Skip to content

Instantly share code, notes, and snippets.

@monkrus
Created January 15, 2020 02:12
Show Gist options
  • Select an option

  • Save monkrus/ca583d941b9f5bcfd5eddb175ea21761 to your computer and use it in GitHub Desktop.

Select an option

Save monkrus/ca583d941b9f5bcfd5eddb175ea21761 to your computer and use it in GitHub Desktop.
Strings in Go
package main
import (
"fmt"
)
func main() {
xi := []int{4, 7, 3, 42, 99, 18, 16, 56, 12}
xs := []string{"James", "Q", "M", "Moneypenny", "Dr. No"}
fmt.Println(xi)
fmt.Println(xs)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment