add host script

This commit is contained in:
JOLIMAITRE Matthieu 2024-05-14 22:27:03 +02:00
parent c62a03b943
commit bccb40e8e7
2 changed files with 46 additions and 0 deletions

View file

@ -0,0 +1,8 @@
local arg1, arg2, arg3 = ...
local function main()
print("arg1", arg1, "arg2", arg2, "arg3", arg3)
local file = fs.open()
end
main()