package main
import "fmt"
type Person struct {
Name string
Email string
Position string
CurrentFocus string
Program Program
}
type Program struct {
Skills []string
Learning []string
Tools []string
}
func main() {
var me Person
me.Name = "Nolions Chen"
me.Email = "[email protected]"
me.Position = "Backend Engineer"
me.CurrentFocus = "https://github.com/Nolions/"
me.Program = Program{
Skills: []string{"Go", "Kotlin", "Android", "PHP", "Laravel"},
Learning: []string{"Blockchain", "Jetpack Compose", "Compose Multiplatform", "Go", "Clean Code", "Design Patterns"},
Tools: []string{"PHPStorm", "Goland", "IntelliJ Idea", "Vscode"},
}
fmt.Println(me)
}
- Taiwan Tianan
- https://github.com/Nolions
Pinned 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.