Skip to content

Instantly share code, notes, and snippets.

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