1
0
mirror of https://github.com/MADTeacher/go_basics.git synced 2025-11-29 05:36:55 +02:00

отредактирована 3 глава

This commit is contained in:
Stanislav Chernyshev
2025-06-04 18:38:52 +03:00
parent 70656cfad8
commit f97178b439
64 changed files with 1751 additions and 0 deletions

26
part_3/3.1/2.go Normal file
View File

@@ -0,0 +1,26 @@
package main
import "fmt"
type employee struct {
name string
departmentName string
age uint8
position string
}
func main() {
emp1 := employee{
name: "Alex",
age: 25,
departmentName: "R&D",
position: "Assistant",
}
emp2 := employee{
name: "Tom",
position: "Intern",
}
fmt.Println(emp1) // {Alex R&D 25 Assistant}
fmt.Println(emp2) // {Tom 0 Intern}
}