Following code won't compile with following error message: Label "Init" not found
{$CLEO}
function foobar()
if 0@ <> 0
jf break
end
Init()
function Init()
end
This is beacuse jf isn't treated as valid closing statement for if, so Init() gets scoped in foobar().
Following code won't compile with following error message: Label "Init" not found
This is beacuse
jfisn't treated as valid closing statement forif, soInit()gets scoped infoobar().