- ๐ ๐ฎ๐บ ๐ฎ ๐ฝ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ฒ๐ฟ ๐ถ๐ป Thailand
- ๐ โค๏ธ Go ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ด!
type aboutMe struct {
pronouns []string
languages []string
hobbies []string
funFact string
}
func main() {
pallat := aboutMe {
pronouns: ["He", "Him"],
languages: ["Go", "Go", "Go", "JavaScript"],
hobbies: ["Reading", "Watching", "Coding"],
funFact: "The Sunrise is in the East",
}
fmt.Printf("Pronouns: %v\n", pallat.pronouns)
fmt.Printf("Languages I Know: %v\n", pallat.languages)
fmt.Printf("My Hobbies: %v\n", pallat.hobbies)
fmt.Printf("Fun Fact: %s\n", pallat.funFact)
}