Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Level 6 lesson 6 -7

Please share correct answer because.answer not mentioned
by

1 Answer

sam5epi0l
Here is possible solution for level 6 lesson 6


package main
import (
"fmt"
"reflect"
)

// declare function here
func doExercise() {
fmt.Println("")
}

func main() {
fmt.Println(reflect.TypeOf(doExercise))
}

Login / Signup to Answer the Question.