rubyx/test/compiler/fragments/test_functions.rb

36 lines
450 B
Ruby
Raw Normal View History

require_relative 'helper'
class TestFunctions < MiniTest::Test
include Fragments
2014-05-28 13:27:18 +02:00
def test_functions
@string_input = <<HERE
class Object
2015-09-20 15:30:07 +02:00
int times(int a, int b)
2015-10-27 10:00:48 +01:00
if_zero( b )
a = 0
else
2015-10-27 10:00:48 +01:00
int m = b - 1
int t = times(a, m)
2015-10-27 10:00:48 +01:00
a = a + t
end
2015-10-27 10:00:48 +01:00
return a
end
int t_seven()
2015-10-27 10:00:48 +01:00
int tim = times(5,3)
tim.putint()
end
2014-06-07 22:22:32 +02:00
int main()
2015-10-27 10:00:48 +01:00
return t_seven()
end
end
HERE
@length = 196
2015-07-19 10:15:38 +02:00
check
end
end