Difference between revisions of "Help.topics"
From ComputerCraft Wiki
m (Moved to CAT:APIFunctions) |
(Table -> Table (type)) |
||
Line 4: | Line 4: | ||
|args= | |args= | ||
|api=help | |api=help | ||
− | |returns=[[ | + | |returns=[[Table_(type)|Table]] all valid topics |
|addon=ComputerCraft | |addon=ComputerCraft | ||
|desc=Lists all valid help topics | |desc=Lists all valid help topics |
Revision as of 18:45, 30 November 2012
Function help.topics | |
Lists all valid help topics | |
Syntax | help.topics() |
Returns | Table all valid topics |
Part of | ComputerCraft |
API | help |
Examples
Example | |
Lists all valid help topics | |
Code |
for i,v in pairs(help.topics()) do print(v) end |
Output | List of all valid help topics |