Skip to content

Instantly share code, notes, and snippets.

@luandevpro
Last active August 1, 2020 12:49
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 luandevpro/b974d9f8a81ee6816b043536eaccada4 to your computer and use it in GitHub Desktop.
Save luandevpro/b974d9f8a81ee6816b043536eaccada4 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
)
type Student struct {
name string
email string
age int
}
func main() {
student := Student{
name: "tran",
email: "tran@gmail.com",
age: 25,
}
fmt.Println(student)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment