rubyx/test/bench/soml/word.rb
2015-11-30 16:09:55 +02:00

19 lines
310 B
Ruby

require_relative 'helper'
class BenchWord < MiniTest::Test
include BenchTests
def test_hello
@main = <<HERE
int count = 100352 - 352
Word hello = "Hello there"
while_plus( count - 1)
hello.putstring()
count = count - 1
end
return 1
HERE
check_remote 1
end
end