package main
import "fmt"
type Profile struct {
Name string
From string
Company string
}
func main() {
me := &Profile{
Name: "Artur Shaidullin",
From: "Kazan, Russia",
Company: "Avito",
}
fmt.Printf(`Hi there! 👋
About me:
- name: %s
- from: %s
- company: %s`, me.Name, me.From, me.Company)
}
🐼
LinkedIn: https://www.linkedin.com/in/artur-shaydullin-989454162/
- Russia, Kazan
Popular repositories Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.