.gitignore moment

This commit is contained in:
Alessandro Proto 2023-01-08 10:37:32 +01:00
parent dab2ad1e1f
commit c4d5ebd500
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1 @@
print("Hello, world!")

View file

@ -0,0 +1,32 @@
local term = require("term")
local colors = require("colors")
local event = require("event")
local io = require("io")
local shell = {}
shell.path = "/bin/?.lua"
function shell.getDir()
end
function shell.setDir(path)
end
function shell.resolve(path)
end
function shell.run(path, args)
end
while true do
term.setForeground(colors.yellow)
write("$ ")
term.setForeground(colors.white)
local line = io.read()
end