package main
import (
"fmt"
)
type Name struct {
name string
}
func (n Name) intro() string {
return fmt.Sprintf("My name is %s", n.name)
}
func main() {
me := Name{name: "Philip"}
fmt.Println(me.intro())
}
-
π§ I specialize in Go and i enjoy building robust software systems that adhere to SOLID principles, design patterns, and core engineering concepts.
-
π I am actively looking to collaborate on Open Source Software Projects and contribute to impactful, community-driven initiatives.