Skip to content

Instantly share code, notes, and snippets.

@100daysofdevops
Last active October 2, 2019 05:16
Show Gist options
  • Select an option

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

Select an option

Save 100daysofdevops/a231fde6ec372ea548636012a24e6d1c to your computer and use it in GitHub Desktop.
package main
import "fmt"
var (
fname string = "Prash"
lname string = "Lakh"
age int = 28
)
func main() {
fmt.Println(fname, lname, age)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment