Hi Charles,
using a print statement without argument gives an error message (Linker found unidentified names). Using print "" or print chr(13,10) will solve the problem. I wonder if it's legitimate to use an overriding function?
'uses console
sub print
'print ""
print chr(13,10)
end sub
'print
print "Hello"
print
print "Goodbye"
'waitkey
I am not sure if side effects are expected if I try to override print in this way?
Roland