process.stdout.write("hello world\n");
Output
hello world
package main import ( "fmt" "os" ) func main() { fmt.Fprint(os.Stdout, "hello world\n") }
⬆ back to top
← cli flags stderr→