blitz-foundation / monkey2

zlib License
3 stars 0 forks source link

Comparing int with string. #107

Open Pharmhaus-2 opened 5 years ago

Pharmhaus-2 commented 5 years ago

Original Author: coconcode

Should this be allowed?

Function Main()
    Local str := "Test"
    Local num := 10
    Print(str < num) ' prints False
End