goodbye = new (#17865)

This commit is contained in:
Cameron Lennox
2025-06-15 02:01:03 -04:00
committed by GitHub
parent 30dcd1b113
commit 45618b5e9e
30 changed files with 98 additions and 75 deletions
+3 -3
View File
@@ -14,12 +14,12 @@
See Also:
- <scriptError>
*/
var/list/errors = new
var/list/errors = list()
/*
Var: warnings
A list of non-fatal problems in the source code found by the scanner.
*/
var/list/warnings = new
var/list/warnings = list()
/*
Proc: LoadCode
@@ -84,7 +84,7 @@
Variable: delim
A list of characters that denote the start of a new token. This list is automatically populated.
*/
var/list/delim = new
var/list/delim = list()
/*
Macro: COL