package main
import "fmt"
type Bio struct {
Name string
Dev string
Handle string
}
func (b *Bio) ToText() string {
return fmt.Sprintf("I'm %v, an %v,\nFollow me on Twitter => %v", b.Name, b.Dev, b.Handle)
}
func main() {
me := Bio{
Name: "Benjamin",
Dev: "Application Engineer π¨βπ»",
Handle: "@dotsehyde",
}
fmt.Println(me.ToText())
// I'm Benjamin a Software Developer π¨βπ»,
// Follow me on Twitter => @dotsehyde
}
π¨βπ»
NiGHT LiFE
- Accra, Ghana
-
06:09
(UTC -12:00) - dotsehyde.github.io
- @dotsehyde
- in/dotsehyde
Highlights
Popular repositories 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.