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{
"- ⚡ Quick bio:": "A kind of foodLover-gamer-coder-programmer-remote,
"- 🔭 I’m currently working on": "Developer JR",
"- 🌱 I’m currently learning": "Python, MongoDB, Angular, Flask, Django --- Sharpening my Front End Skills for the MERN stack (Personal goal)",
"- 👯 I’m looking to collaborate on": " related projects",
"- 🤔 I’m looking for help with": "Anything related to what I am currently learning 😅",
"- 💬 Ask me about": "Css, JavaScript, Web-Dev & SEO",
"- 📫 How to reach me:": "https://github.com/JoaquinLeonq98",
"https://www.linkedin.com/in/joaquinlq/"
}
}
JoaquinLeonq98