set salit.size to 0 forcibly in get_symbol_array_literal()

This commit is contained in:
2018-04-07 15:09:02 +00:00
parent bec9600463
commit 3d344fc649
2 changed files with 18 additions and 4 deletions

View File

@ -48,9 +48,9 @@ A HCL program is composed of more expressions.
* nqk?
* sprintf
* printf
* +
* -
* *
* _+_
* _-_
* _*_
* mlt
* /
* quo
@ -61,3 +61,15 @@ A HCL program is composed of more expressions.
* bit-xor
* bit-not
* bit-shift
## Defining a function
(defun function-name (arguments)
| local variables |
function body
)
(set function-name (lambda (arguments)
| local variables |
function body
)