blitz-research/monkey2

Comparing int with string.

Opened this issue · 0 comments

Should this be allowed?

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