package main
import (
"fmt"
)
type Bio map[string]string
func main() {
for k, v := range GetBio() {
fmt.Printf("%+v: %+v\n", k, v)
}
}
func GetBio() Bio {
return Bio{
""
}
}Tools that I use on a daily basis, or that I've used or worked (either much or a bit) with on the past
Β
Β
Β