Native functions
Neurox has for the moment one native function
RUN(path)
local file_structure = {
msdos = {
name = "MSDOS",
file_type = extensions.file_type.sys,
parent = "root",
content = "DEFINE NEUROX\nSET WinDir = 'C:\\WINDOWS'\nSET WinBootDir = 'C:\\WINDOWS'\nSET HostWinBootDrv = 'C'",
},
}DEFINE NEUROX
RUN("C:\MSDOS.SYS")PRINT(var)
DEFINE NEUROX
SET a = 5
SET b = 6
SET sum = SUM(a,n)
PRINT(sum)
>>> 11Last updated