yes that is by design.
when you use CALL , you need to provide parameters with ().
call test()
but when not using CALL, you need to omit the ()
sub test(a as byte)
end sub
test b
call test(b)
↧