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()
}
Highlights
- Pro
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.


