2019-06-15 09:44:29 +00:00
|
|
|
package hello
|
|
|
|
|
|
2019-06-15 12:10:20 +00:00
|
|
|
// User user type
|
|
|
|
|
type User struct {
|
2019-06-15 13:36:53 +02:00
|
|
|
ID int64
|
|
|
|
|
Name string
|
2019-06-15 12:10:20 +00:00
|
|
|
Addr *Address
|
2019-06-15 13:36:53 +02:00
|
|
|
}
|
|
|
|
|
|
2019-06-15 12:10:20 +00:00
|
|
|
// Address address type
|
|
|
|
|
type Address struct {
|
2019-06-15 13:36:53 +02:00
|
|
|
City string
|
|
|
|
|
ZIP int
|
|
|
|
|
LatLng [2]float64
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-19 09:20:58 +00:00
|
|
|
var alex = User{
|
|
|
|
|
Name: "ali",
|
|
|
|
|
}
|
2019-06-15 13:36:53 +02:00
|
|
|
|
2019-06-15 09:44:29 +00:00
|
|
|
// Hello writes a welcome string
|
|
|
|
|
func Hello() string {
|
2019-06-15 12:10:20 +00:00
|
|
|
return "Hello, " + alex.Name
|
2019-06-15 09:44:29 +00:00
|
|
|
}
|