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) }
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.