inst/examples/repeat.R

rep1 =
function()
{
   ctr = 0L
   repeat {

      ctr = ctr + 1L
      if(ctr > 5L) 
        break

   }

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