package main
import "fmt"
type Developer struct {
Name string
Languages []string
Currently string
AskMeAbout []string
}
func (d Developer) Introduce() {
fmt.Printf("Hey, I'm %s ๐\n", d.Name)
fmt.Println("I love creating performant systems and scalable apps.")
fmt.Printf("Currently exploring: %s\n", d.Currently)
fmt.Printf("Ask me about: %v\n", d.AskMeAbout)
}
func main() {
rishi := Developer{
Name: "Rishi Raj Singh",
Languages: []string{"Go", "TypeScript", "JavaScript"},
Currently: "Next.js and Golang internals",
AskMeAbout: []string{"Node.js", "React", "Express", "MongoDB", "Redis"},
}
rishi.Introduce()
}
Layer5 Profile: https://cloud.layer5.io/user/f7f16f53-fdd7-44bd-b27b-52c7b972d198


