I tried printf("Hi\n") in the REPL and the result was Hi\n%!(EXTRA []interface {}=[])CometNop.
So, the issues are:
- printf does not interpret special characters like
\t or \n.
- if we print something without other arguments, printf print the extra empty []CometObject that was intended to be full of other arguments.
I tried
printf("Hi\n")in the REPL and the result wasHi\n%!(EXTRA []interface {}=[])CometNop.So, the issues are:
\tor\n.