generalise the operator handling

ie passing them through
implementing more
This commit is contained in:
Torsten Ruger
2018-04-19 22:13:52 +03:00
parent 7d9132ee36
commit 9e21719aeb
6 changed files with 24 additions and 29 deletions

View File

@ -29,6 +29,10 @@ module Risc
run_all "4 * 4"
assert_equal 16 , get_return.value
end
def test_smaller
run_all "4 < 5"
assert_equal 16 , get_return.value
end
end
end
end