package main
import "fmt"
type AboutMe struct {
Icon string
Text string
}
func main() {
fmt.Println("I am a student who needs to study.")
aboutMeList := []AboutMe{
{"🌱", "I'm learning about technology"},
{"🎓", "I studied computer science"},
{"⚡", "Fun fact ~ Let's get started"},
{"🇮🇩", "Central Java, Indonesia"},
}
for _, v := range aboutMeList {
fmt.Println(fmt.Sprintf("%s %s", v.Icon, v.Text))
}
}dewanakl/dewanakl
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|