add filesystem

This commit is contained in:
unknown
2022-02-13 00:31:20 -05:00
parent ef2ceed755
commit 4cfacb1abc
19 changed files with 148 additions and 16 deletions

View File

@ -2,5 +2,6 @@
"name": "echo",
"license": "MIT",
"version": 0.1,
"engine": 0.3
"engine": 0.3,
"help": "prints out input to the terminal"
}

View File

@ -1,4 +1,4 @@
function echo(input)
function echo(pos, input, data)
return input
end