You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
338 B
Go
18 lines
338 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"reflect"
|
|
)
|
|
|
|
func main() {
|
|
|
|
name := "Drew"
|
|
//GO won't let us use unused variables inside of functions
|
|
//course string = "Docker Deep Dive"
|
|
module := 3.2
|
|
|
|
fmt.Println("Name is", name, "and is of type", reflect.TypeOf(name))
|
|
fmt.Println("Module is", module, "and is of type", reflect.TypeOf(module))
|
|
}
|