#golang quiz: What happens if you try to compile and run the following program?
package main
import (
"fmt"
"math"
)
func main() {
fmt.Println(int(math.NaN()))
}
It prints 0.
It prints -1.
It panics.
Compilation fails.
Something else.
Poll ended at .