DEV Community

Discussion on: Welcome Thread - v129

Collapse
 
mightysho profile image
Mightysho

Welcome Me šŸ‘ØšŸ»ā€šŸ’» To DEV āœØ I'm New Here šŸ’žļø

About me

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{
        "- šŸ‘‹ Hi, Iā€™m @Mightysho šŸ˜…",
        "- āœØ I'm passionate about learning new skills in Technology šŸ”­",
        "- šŸ‘€ Iā€™m interested in becoming a Backend Developer āš”",
        "- šŸŒ± Iā€™m currently a Software Engineering student in ALX + HOLBERTON šŸŒ±",
        "- šŸ‘Æ Iā€™m looking to collaborate with Software Multinational Companies in the USA  after my course šŸ’žļø",
        "- šŸ“« I hope am welcome here! šŸ‘ØšŸ»ā€šŸ’» You can reach me in my DM šŸ’¬",
    }
}
Enter fullscreen mode Exit fullscreen mode

Enjoy the games while scrolling šŸ‘€

Game 1

Game 2