-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2.go
64 lines (48 loc) · 809 Bytes
/
2.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package main
import "fmt"
type worker struct {
pers person
exp int "expirience"
}
type person struct {
name string "fullname"
age int
}
type hr struct {
wor worker
country string
field string "typeOfCompany"
}
type coder struct {
wor worker
primaryTech string
secondaryTech string
}
type sales struct {
wor worker
field string "areaOfinterest"
}
type athlete struct {
wor worker
sport string
wins int
losses int
}
type lawyer struct {
wor worker
specialization string
}
func main() {
q := hr{worker{person{"Maksym Sydorov", 27}, 5}, "Ukraine", "IT"}
fmt.Println(q)
fmt.Println("Hello World")
a := make([]int, 4)
a = a[:2]
fmt.Println(a)
a = a[:cap(a)]
fmt.Println(a)
a = a[2:]
fmt.Println(a)
a = a[:cap(a)]
fmt.Println(a)
}