package main
import "fmt"
type Developer struct {
Name string
Role string
Location string
Passion []string
CurrentFocus string
FunFact string
}
func main() {
rahul := Developer{
Name: "Rahul O R",
Role: "Software Engineer",
Location: "India ๐ฎ๐ณ",
Passion: []string{
"Building scalable microservices",
"Crafting seamless UI/UX experiences",
"Exploring distributed systems",
"Writing clean, maintainable code",
},
CurrentFocus: "Cloud-native apps with Go & Kubernetes",
FunFact: "I debug with console.log and I'm not ashamed ๐",
}
fmt.Printf("Hey there! I'm %s ๐\n", rahul.Name)
}
๐ฏ
Learning new things
Passionate Developer
Popular repositories Loading
-
words_and_examples
words_and_examples PublicThis app randomly generates words and their meanings
JavaScript 2
-
calculator
calculator Publicsimple calculator It performs basic mathematical operations like addition, subtraction, multiplication, and division.
HTML
-
-
-
-
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.

