rubyx/test/bench/ruby/test_word.rb
Torsten Ruger 1e2b784583 moved all the ruby benches out of the tests
here into bench dir and a little frame
2015-11-21 16:33:43 +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