Running goroutines

Report a typo

What ways to run a goroutine will work?

a)

go someWork()

b)

func() go {
    quad := numberQuad(2)
    result := quad * 3
    fmt.Println(result)
}()

c)

go quad := numberQuad(2)

d)

work := func() {
    go someWork()
}
go work()
Select one or more options from the list
___

Create a free account to access the full topic