Skip to content

Instantly share code, notes, and snippets.

@tatsuru
Created May 18, 2016 11:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tatsuru/062a85991f393bfae4959a5eb61c2a55 to your computer and use it in GitHub Desktop.
Save tatsuru/062a85991f393bfae4959a5eb61c2a55 to your computer and use it in GitHub Desktop.
...
write(2, "test\n", 5test
) = 5
exit_group(0) = ?
+++ exited with 0 +++
package main
import (
"syscall"
)
func main() {
syscall.Write(syscall.Stderr, []byte("test]n"))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment