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
318 B

## pilot
### Instructions
Write a `go` file so that the following program compiles.
### Usage
```go
package main
import (
"fmt"
student ".."
)
func main() {
var donnie student.Pilot
donnie.Name = "Donnie"
donnie.Life = 100.0
donnie.Age = 24
donnie.Aircraft = student.AIRCRAFT1
fmt.Println(donnie)
}
```