mattn / anko

Scriptable interpreter written in golang
http://play-anko.appspot.com/
MIT License
1.45k stars 120 forks source link

undefined symbol 'Atoi' #349

Closed carmel closed 2 years ago

carmel commented 2 years ago

my script as follows:

strconv = import("strconv")

index, _ = strconv.Atoi("12")
println(indx)
carmel commented 2 years ago

Thank you for handling it so quickly, later I used the strconv.ParseInt function instead which also worked.