package main
import "fmt"
type SoftwareDeveloper struct {
Name string
Role string
Languages []string
Company string
}
func (s *SoftwareDeveloper) HelloWorld(){
fmt.Printf(`
Thanks for dropping by, My name is %s and
I'm currently employed as %s at %s.
`, s.Name, s.Role, s.Company)
}
func main() {
s := SoftwareDeveloper{
Name: "Artem Sokolov",
Role: "Software Developer",
Languages: []string{"ru_RU", "en_US"},
Company: "MTT",
}
s.HelloWorld()
}
Advent of Coding!
Study at MIREA Russian Technology University.
Currently working as software engineer at Positive Technologies
:wq
-
Positive Technologies
- Moscow
- https://t.me/Sombrer01
Pinned 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.