2.21. callarg_ex.bas

[<<<] [>>>]

This program tests,… well, er… I do not know what it tested originally. But at least it executes fine.

Example callarg_ex.bas :

sub thisfunc(a,b,c,d)

print a print print b print print c print print d print

a = "kakukk" thisfunc = "barna maci"

testvar = "kék maci"

end sub

sub thatfunc(a,b,c,d)

print "testvar is ",testvar

end sub

print "haho!!!\n"

Result executing callarg_ex.bas :

Possible error messages sent to stderr:


[<<<] [>>>]