added the str.atPut primitive
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-04-10 19:23:15 +09:00
parent 27459c7010
commit 7634df5449
4 changed files with 105 additions and 19 deletions

View File

@ -1,3 +1,11 @@
## 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
}