fork download
  1. f <- function(a=0){ ifelse(a<10,a+f(a+1),a); }
  2.  
  3. (f())
Success #stdin #stdout 0.31s 22840KB
stdin
Standard input is empty
stdout
[1] 55