@load.lua

10 lines · 263 B

Open raw

Alias: delegates to load.lua in this collection

Copy & run

wget https://perlytiara.github.io/turtles.tips/raw/programs/perlytiara/BigBaemingGamers/@load.lua
1-- Alias: delegates to load.lua in this collection
2local target = "/programs/perlytiara/BigBaemingGamers/load.lua"
3if fs.exists(target) then
4 shell.run(target, table.unpack(arg))
5else
6 print("Missing " .. target .. " — ensure files are installed.")
7end
8
9
10