Created
May 18, 2016 11:38
-
-
Save tatsuru/062a85991f393bfae4959a5eb61c2a55 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
write(2, "test\n", 5test | |
) = 5 | |
exit_group(0) = ? | |
+++ exited with 0 +++ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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