We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ed5bbe commit 16dad5aCopy full SHA for 16dad5a
luminapath/std/io/lib.lm
@@ -19,7 +19,7 @@ pub fn eprint str as s -> () =
19
@[platform "linux"]
20
when s can ToString
21
pub fn eprintln str as s -> () =
22
- print_into ("\n" <> str) stderr
+ print_into (str <> "\n") stderr
23
24
25
@@ -29,7 +29,7 @@ pub fn print str as s -> () =
29
30
31
pub fn println str as s -> () =
32
- print_into ("\n" <> str) stdout
+ print_into (str <> "\n") stdout
33
34
35
fn print_into str fd as string i32 -> () =
0 commit comments