Hi it’s me

bugmaker.go
// good code explain itself

package main
import "fmt"

type BugMaker struct{
Name string
Job string
Age uint8
Desc string
}

func(b *BugMaker) introduce(){
fmt.Printf(`Hi, I'm %s, %d years old, working as a %s, also %s.
if there is a second job for me, I might be a cook or a musician.
`,b.Name,b.Age,b.Job,b.Desc)
}

func main() {
me:=&BugMaker{
"wen",
"whatever stack developer",
25,
"an adventurer in binary world",
}

me.introduce()
}
go run bugmaker.go

Hi, I’m wen, 26 years old, working as a whatever stack developer, also an adventurer in binary world.
if there is a second job for me, I might be a cook or a musician I want to be a photographer now.