package main
import "fmt"
type Me struct {
Name string
Nickname string
Country string
Coding bool
Coffee int
}
func main() {
me := Me{
Name: "Napas Vinitnantharat",
Nickname: "Fang",
Country: "Thailand πΉπ",
Coding: true,
Coffee: 999, // daily requirement
}
fmt.Printf("π Hi, I'm %s (%s) from %s.\n", me.Name, me.Nickname, me.Country)
if me.Coding {
fmt.Println("π» Currently coding... probably fixing bugs I created 5 minutes ago.")
}
if me.Coffee > 100 {
fmt.Println("β Running on coffee and dreams.")
}
fmt.Println("π« Contact me: Napas.vin@gmail.com")
}- π± Iβm from Thailand πΉπ πΉπ πΉπ
- π Hi, my name is Napas . My nickname is Fang!
- π€ Interested in Programming ,mathematic, Business and Finance.
- π I'm Kind a person who love explore the world and understand How the world is really work ?. I also like to understand business and finance.In my free time I like to apply my programming skill to make life easier such as create a portfolio simulation stuff.
- π« How to reach me Napas.vin@gmail.com
- My portfolio website
- β‘ work as a Full Stack Developer , Data Analyst


