os.unloadAPI
From ComputerCraft Wiki
Revision as of 07:59, 4 August 2020 by Magiczocker (Talk | contribs)
Function os.unloadAPI | |
Unloads any, default and user-created, API named name. | |
Syntax | os.unloadAPI(string name) |
Returns | nil |
Part of | ComputerCraft |
API | OS |
Examples
Example | |
Unloads a user-loaded API called "myAPI". | |
Code |
os.unloadAPI("myAPI") |
Example | |
Unloads the ComputerCraft's default paintutils API. | |
Code |
os.unloadAPI("paintutils") |