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

14 lines
179 B
Ruby
Raw Normal View History

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