Skip to content

Commit 8a92a3d

Browse files
committed
nato writes to stdout instead of stderr
1 parent dcdcde2 commit 8a92a3d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

nato/main.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package main
22

33
import (
4+
"fmt"
45
"io"
56
"log"
67
"os"
@@ -16,6 +17,6 @@ func main() {
1617

1718
pronunciation := nato.NATO(string(bytes))
1819
for _, p := range pronunciation {
19-
print(p + "\n")
20+
fmt.Println(p)
2021
}
2122
}

0 commit comments

Comments
 (0)