2024-01-14 09:48:57 +09:00
|
|
|
## 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
|
2024-04-10 19:23:15 +09:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
try {
|
|
|
|
throw "excetion message"
|
|
|
|
} catch (e a) { ##ERROR: syntax error - not proper exception variable
|
|
|
|
printf "EXCEPTION - %s\n" e
|
|
|
|
}
|