package main
import "fmt"
type Bobby struct {
Name string
Location string
Role string
Focus []string
Hobbies []string
}
func main() {
me := Bobby{
Name: "Bobby Unknown",
Location: "Palembang, South Sumatra",
Role: "Pemula Gabuter",
Focus: []string{"Ngulik dikit", "Linux-an", "OpenWrt-otw-jago"},
Hobbies: []string{"Bikin tools", "Ngoprek router", "Gabut produktif"},
}
fmt.Printf("Hi, I'm %s!\\n", me.Name)
}
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.


