SamiKalliomaki / eppabasic

A new web based basic language inspired by CoolBasic.
Other
11 stars 3 forks source link

Returning an illegal value from a function shows no visible error #46

Open expositionrabbit opened 9 years ago

expositionrabbit commented 9 years ago
Function Test() as Integer
   Return "This is no integer"
End Function

Print Test()

The editor shows no error when pasting in this code. However, it correctly refuses to run it. Calling ebeditor.runCode() from the browser console shows Error: Failed to cast "String" to "Number", but the editor does not display this in any way.