package main
import "fmt"
func main() {
me := struct {
Name string
NickName string
CurrentRole string
Skills []string
FollowMe []string
}{
Name: "Poolsawat Apin",
NickName: "Pool",
CurrentRole: "Senior Engineer",
Skills: []string{"Java", "Kotlin", "Go", "Dart", "JavaScript", "Solidity", "PHP5-7", "SQL","Python","HTML5","TypeScript"},
FollowMe: []string{"https://www.poolsawat.com", "https://poolsawat-com.medium.com"},
}
fmt.Println(me)
}
Ask me anything about software engineering and Java!