Skip to content

Instantly share code, notes, and snippets.

@vkorbes
Last active February 16, 2018 11:41
Show Gist options
  • Save vkorbes/2a7af0f70c5f508735177c564741a9ae to your computer and use it in GitHub Desktop.
Save vkorbes/2a7af0f70c5f508735177c564741a9ae to your computer and use it in GitHub Desktop.
// a + ~ = ã, right?
ã := []byte{97, 126}
fmt.Println(string(ã))
// And can we spot a pattern of repeating separators?
x := “Ó o auê aí, ô!”
for _, v := range x {
fmt.Printf(“%v “, v)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment