package main
import "fmt"
type Developer struct {
Name string
Location string
Currently string
Interests []string
OpenTo string
}
func main() {
me := Developer{
Name: "Kavindu Lakmal Wickramasinghe",
Location: "Sri Lanka 🇱🇰",
Currently: "Learning Go 🌱",
Interests: []string{"Cloud Architecture", "Backend Systems", "DevOps", "Open Source"},
OpenTo: "Collaborations & Opportunities",
}
fmt.Printf("Hey! I'm %s from %s\n", me.Name, me.Location)
fmt.Printf("Currently: %s\n", me.Currently)
}Thanks for stopping by! Drop a ⭐ if you like what you see.



