Guest User

Untitled

a guest
Feb 25th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. // a + ~ = ã, right?
  2. ã := []byte{97, 126}
  3. fmt.Println(string(ã))
  4. // And can we spot a pattern of repeating separators?
  5. x := “Ó o auê aí, ô!”
  6. for _, v := range x {
  7. fmt.Printf(“%v “, v)
  8. }
Add Comment
Please, Sign In to add comment