Question #245

Author: admin
tags: Go  
package main

import "fmt"

func main() {
	var value float64 = 5.95
	fmt.Println(int(value)) // ??
}
What will be printed?
5
6
5.95
Nothing, the code will not be compiled
Rate the difficulty of the question:
easyhard