Question #248

Author: admin
tags: Go  
package main

import "fmt"

func main() {
	var str string = "10.2"
	fmt.Println(int(str)) // ??
}
10
10.2
Nothing, the code will not be compiled
Rate the difficulty of the question:
easyhard