12 lines
173 B
Plaintext
12 lines
173 B
Plaintext
// Testing Harbour Error system
|
|
|
|
function Main()
|
|
|
|
local n
|
|
|
|
QOut( "We are running and now an error will raise" )
|
|
|
|
n++ // an error should raise here
|
|
|
|
return nil
|