Sum of Divisors for OCaml Golf Competition by lisa

while 1=1do let rec n=read_int()and f=function 1->1|i when n=n/i*i->i+f(i-1)|i->f(i-1)in Printf.printf"%d: %d
"n(f n)done

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page