rubyx/test/mains/source/if-true_small_10.rb

14 lines
178 B
Ruby
Raw Normal View History

class Space
def if_small( n )
if( n < 10)
"small".putstring
return 10
else
return 20
end
end
def main(arg)
return if_small( 8 )
end
end