5b2c7745fe
previous commit made the mains tests more general this joins methods tests here so we can run them on arm too fix #11
17 lines
169 B
Ruby
17 lines
169 B
Ruby
class Space
|
|
|
|
def down( n )
|
|
if( n < 2 )
|
|
return n
|
|
else
|
|
a = down(n - 1)
|
|
return a
|
|
end
|
|
end
|
|
|
|
def main(arg)
|
|
return down(10)
|
|
end
|
|
|
|
end
|