Print objects on the standard output (stdout).

Property definitions

core :: file $ Sys :: printn
# Print `objects` on the standard output (`stdout`).
fun printn(objects: Object...)
do
	sys.stdout.write(objects.plain_to_s)
end
lib/core/file.nit:1689,1--1693,3