package main
import (
"fmt"
)
type Bio map[string]interface{}
func main() {
for k, v := range GetBio() {
fmt.Printf("%s: %s\n", k, v)
}
}
func GetBio() Bio {
return Bio{
"Currently learning": "C++, Java, Go, Qt, MySQL, Redis, Kafka, MongoDB, Elasticsearch",
"Looking to collaborate on": "C++, Java and Go related projects",
"Ask me about": "Anything related to what I am currently learning",
"The direction of efforts": "Be an excellent programmer and create many meaningful open source projects",
}
}
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.