Merge: introduce plain_to_s
[nit.git] / lib / standard / file.nit
index 3bad3f3..46c52ec 100644 (file)
@@ -1236,7 +1236,7 @@ end
 # Print `objects` on the standard output (`stdout`).
 fun printn(objects: Object...)
 do
-       sys.stdout.write(objects.to_s)
+       sys.stdout.write(objects.plain_to_s)
 end
 
 # Print an `object` on the standard output (`stdout`) and add a newline.