lib/standard/string: introduce (an use) `plain_to_s`
[nit.git] / lib / standard / file.nit
index 1490ee7..f68bae9 100644 (file)
@@ -1230,7 +1230,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.