sc3-rom-dump/rom/programs/programs.lua

13 lines
274 B
Lua
Raw Normal View History

2024-01-15 10:36:50 +01:00
-- SPDX-FileCopyrightText: 2017 Daniel Ratcliffe
--
-- SPDX-License-Identifier: LicenseRef-CCPL
local bAll = false
local tArgs = { ... }
if #tArgs > 0 and tArgs[1] == "all" then
bAll = true
end
local tPrograms = shell.programs(bAll)
textutils.pagedTabulate(tPrograms)