rubyx-debugger/codes/times.soml
2015-11-04 16:12:37 +02:00

24 lines
292 B
Plaintext

class Object
int times(int a, int b)
if_zero( b )
a = 0
else
int m = b - 1
int t = times(a, m)
a = a + t
end
return a
end
int t_seven()
int tim = times(5,3)
tim.putint()
return tim
end
int main()
return t_seven()
end
end