I have several routines written in R, simple tools that I would like to share with my colleagues. However, some of them have no programming knowledge. So I want to make it easier to use these tools.
For this I thought about creating an executable / installer for windows, containing these tools, but I have no idea how to do it or where to start.
Considering the Triangle Scalene routine shown below, which tests whether or not the triangle is scalene.
### Triangulo Escaleno
### Para um triangulo ser escaleno ele precisa ter os 3 lados diferentes
##Entrada de Dados
#Lados do Triangulo
a<-5
b<-3
c<-3
#Estrutura de Condição
if(a!=b & b!=c & c!=a){
cat("É um triangulo escaleno")
}else{
cat("Não é um triangulo escaleno")
}
How can I create or build an executable / installer of this routine?