Making [IF] [THEN] work at console, bumping version.

This commit is contained in:
Brad Nelson
2023-01-03 21:01:51 -08:00
parent a1a934397d
commit 3d1cf4b93c
4 changed files with 12 additions and 3 deletions

View File

@ -117,6 +117,9 @@ function BUILTIN_CODE(i) {
}
function Find(name) {
if (name.length === 0) {
return 0;
}
name = name.toUpperCase();
var raw = unescape(encodeURIComponent(name));
for (var voc = i32[g_sys_context>>2]; i32[voc>>2]; voc += 4) {