Skip to content

Instantly share code, notes, and snippets.

@zaltoprofen
Created September 24, 2016 14:54
Show Gist options
  • Save zaltoprofen/5aa57f0f89f6bcef7d39f3b26ead258f to your computer and use it in GitHub Desktop.
Save zaltoprofen/5aa57f0f89f6bcef7d39f3b26ead258f to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"os"
)
func main() {
buf := make([]byte, 12)
os.Stdin.Read(buf)
s := string(buf)
fmt.Println(s[0:4], s[4:])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment