Skip to content

Instantly share code, notes, and snippets.

@100daysofdevops
Created October 3, 2019 00:53
Show Gist options
  • Select an option

  • Save 100daysofdevops/41a148fa0a78686615ab3505521b165d to your computer and use it in GitHub Desktop.

Select an option

Save 100daysofdevops/41a148fa0a78686615ab3505521b165d to your computer and use it in GitHub Desktop.
package main
import "fmt"
func main() {
var students [3] string
students[0] = "Ram"
students[1] = "Shyam"
students[2] = "Mohan"
fmt.Printf("Length of an array: %v\n", len(students))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment