HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/src/ruby-3.0.2/test/racc/src.intp
def assert( no, cond )
  if cond then
  else
    raise( 'assert ' + to_s(no) + ' failed' )
  end
end

assert( 1, concat(concat(concat('str=', 'a'), "b"), 'c') == 'str=abc' )
assert( 2, 'operator' + ' ok' == 'operator ok' )
assert( 3, 1 + 1 == 2 )
assert( 4, 4 * 1 + 10 * 1 == 14 )

if true then
  assert( 5, true )
else
  assert( 6, false )
end

i = 1
while i == 1 do
  i = false
end
assert( 7, i == false )
assert( 8, nil == nil )

def func
  assert( 9, true )
end
func

def argfunc( str )
  assert( 10, str == 'ok' )
end
argfunc 'ok'