GNOME Bugzilla – Bug 690127
Print statement does not print newline if it has a null argument
Last modified: 2013-09-08 23:21:13 UTC
This will print a newline at the end: var s = "hello" print s This will print "(null)" but without a newline: s: string? = null print s
This is now fixed in master and a newline will be added even if the string variable evaluates to null also print "" will just print a newline