package main
import "fmt"
type Developer struct {
Name string
Location string
Role string
CurrentlyLearning []string
FunFact string
}
func main() {
me := Developer{
Name: "TOomaAh",
Location: "France π«π·",
Role: "Backend Developer",
CurrentlyLearning: []string{"Go", "Rust"},
FunFact: "I debug by explaining code to my rubber duck π¦",
}
fmt.Printf("Hello, World! I'm %s\n", me.Name)
}π― Current Focus
- π± I'm currently learning Go & Rust




