Mingalaba!
Welcome to one of my corners on the web.
Just someone who love to solve, and build things. Currently working for @westerndigitalcorporation and building @tutorpoint-io.
Currently trying to write blogs on my life experiences.
package main
import "fmt"
func main() {
aboutMe := map[string]interface{}{
"Name": "Phyo Thiha Kyaw",
"Nickname": "Dante",
"Location": "Thailand",
"Occupation": "Software Engineer",
"Languages": []string{"Go", "C#", "JavaScript"},
"Tools": []string{"ASP.NET CORE", "React", "Svelte", "Gin"},
"Mail": "phyothihacodes@gmail.com",
"Website": "https://pthk.xyz",
}
fmt.Println(aboutMe)
}