Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 26, 2018 23:07
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 parzibyte/de506d1b0bc97962ebf9d57372b28e40 to your computer and use it in GitHub Desktop.
Save parzibyte/de506d1b0bc97962ebf9d57372b28e40 to your computer and use it in GitHub Desktop.
package main
import "fmt"
type Mascota struct{
edad int
nombre, raza string
sana bool
}
func main() {
mascota := Mascota{1, "Maggie", "No sé", true}
fmt.Println(mascota)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment