Skip to content

Instantly share code, notes, and snippets.

@Sher-Chowdhury
Created September 5, 2019 14:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sher-Chowdhury/f5dfa71b24437c4b15e9884f4dd6f346 to your computer and use it in GitHub Desktop.
Save Sher-Chowdhury/f5dfa71b24437c4b15e9884f4dd6f346 to your computer and use it in GitHub Desktop.
gsg - slice
package main
import (
"fmt"
)
func main() {
var theSlice = []string{"uk", "usa", "canada"}
fmt.Println(theSlice[1])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment