examples/total.R

Sum =
function(x)
{
   total = 0
   for(i in x)
      total = total + i

   return(total)
}

Sum1 = 
function(x)
{
   total = 0
   for(i in 1:10)
      total = total + i

   return(total)
}
duncantl/R2llvm documentation built on May 14, 2019, 9:42 a.m.