Question #247

Author: admin
tags: Go  
package main

import "fmt"

func main() {
	var num1 float64 = 10
	var num2 int = 10
	fmt.Println(num1 == float64(num2) == true) // ??
}
What will be printed?
Nothing, the code will not be compiled
true
false
Rate the difficulty of the question:
easyhard