mirror of
https://github.com/MADTeacher/go_basics.git
synced 2025-11-23 21:34:47 +02:00
17 lines
240 B
Go
17 lines
240 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
type employee struct {
|
|
name string
|
|
departmentName string
|
|
age uint8
|
|
position string
|
|
}
|
|
|
|
func main() {
|
|
var emp employee
|
|
emp2 := employee{}
|
|
fmt.Println(emp, emp2) // { 0 } { 0 }
|
|
}
|