16 lines
389 B
Plaintext
16 lines
389 B
Plaintext
## the expression begins with a dictionary expression.
|
|
## it is not a function name and can'be be invoked.
|
|
#{100:1, 200: 3}; ##ERROR: syntax error - invalid callable
|
|
|
|
---
|
|
|
|
try {
|
|
throw "excetion message"
|
|
} catch (e a) { ##ERROR: syntax error - not proper exception variable
|
|
printf "EXCEPTION - %s\n" e
|
|
}
|
|
|
|
---
|
|
|
|
try { throw "1111"; } catch (e) ##ERROR: syntax error - no exception handler
|