Dummied out _index

This commit is contained in:
2023-01-15 14:28:53 +00:00
parent 3aa7bf1877
commit 402abb647c
2 changed files with 9 additions and 60 deletions

View File

@@ -2,7 +2,10 @@
#include "interpreter.h"
//the _index function is a historical oddity - it's used whenever a compound is indexed
int _index(Interpreter* interpreter, LiteralArray* arguments);
//globally available native functions
int _set(Interpreter* interpreter, LiteralArray* arguments);
int _get(Interpreter* interpreter, LiteralArray* arguments);
int _push(Interpreter* interpreter, LiteralArray* arguments);