package main
import "fmt"
func main() {
const name = "Mayer Andrés Chaves Prada"
city := "Bogotá, Colombia"
role := "Backend Engineer / Full Stack"
interests := "Open to collaborating on interesting software projects"
fmt.Printf("🧑🏽 Name: %s\n", name)
fmt.Printf("🏞️ Location: %s\n", city)
fmt.Printf("🛠️ Role: %s\n", role)
fmt.Printf("🌱 Interests: %s\n", interests)
}📘 Go Pointers — Public documentation contribution for Codecademy Docs.



