mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
314 B
27 lines
314 B
6 years ago
|
## pilot
|
||
6 years ago
|
|
||
6 years ago
|
### Instructions
|
||
6 years ago
|
|
||
|
Write a go file so that the following program compile
|
||
|
|
||
6 years ago
|
### Usage
|
||
6 years ago
|
|
||
|
```go
|
||
|
package main
|
||
|
|
||
|
import (
|
||
6 years ago
|
"fmt"
|
||
|
student ".."
|
||
6 years ago
|
)
|
||
|
|
||
|
func main() {
|
||
|
var donnie student.Pilot
|
||
|
donnie.Name = "Donnie"
|
||
|
donnie.Life = 100.0
|
||
|
donnie.Age = 24
|
||
|
donnie.Aircraft = student.AIRCRAFT1
|
||
|
|
||
|
fmt.Println(donnie)
|
||
|
}
|
||
|
```
|