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/RLLVMCompile documentation built on May 15, 2019, 5:31 p.m.