package main
import "fmt"
type Profile struct {
Pronouns []string
Code []string
DB []string
Tools []string
}
func main() {
harizinside := Profile{
Pronouns: []string{"he", "him"},
Code: []string{"Go", "TypeScript", "NUXTJS", "VUE", "Laravel"},
DB: []string{"MongoDB", "MySQL"},
Tools: []string{"Firebase", "Git"},
}
fmt.Printf("%+v\n", harizinside)
}
🛠️
Chat GPT
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.