package main
import "fmt"
type Person struct {
name string
username string
age int
hobbies []string
job string
}
func main() {
var me = new(Person)
me.name = "Abhi Singh"
me.username = "anodeus"
me.age = "21"
me.job = "Software Developer | Ethical Hacker"
me.hobbies = []string{"code", "anime", "hacks", "internet", "gaming"}
fmt.Println(me)
}
- Note : Top languages is only a metric of the languages my public code consists of and doesn't reflect experience or skill level.