5b2c7745fe
previous commit made the mains tests more general this joins methods tests here so we can run them on arm too fix #11
11 lines
94 B
Ruby
11 lines
94 B
Ruby
class Space
|
|
|
|
def same( n )
|
|
return n
|
|
end
|
|
def main(arg)
|
|
return same(8)
|
|
end
|
|
|
|
end
|