package main
import (
"fmt"
)
type Bio map[string]string
func main() {
for r, s := range GetBio() {
fmt.Printf("%+v: %+v\n", r, s)
}
}
func MyBio() Bio {
return Bio{
"- β‘ Quick bio:": "Just a person who like to code",
"- π Iβm currently working at": "Local Bank as Software Engineer",
"- π± Iβm currently learning": "Docker, K8s, Golang, PostgreSQL, RabbitMQ, PyTorch",
"- π― Iβm looking to collaborate on": "Python, Golang, PHP, JS, Dart and Docker",
"- π¬ Ask me about": "Python, PHP, SQL, Software Design & Architecture, Internet Of Things, AI"
}
}Last Edited on: 29/02/2024