From ComputerCraft Wiki
Revision as of 21:34, 28 November 2012 by AfterLifeLochie (Talk | contribs) (Added to CAT:LuaCoreFunctions.)
Function print | |
Lets you print the string on the terminal. | |
Syntax | print(string) |
Returns | nil |
Part of | ComputerCraft |
API | none |
Examples
Example | |
Prints something. | |
Code |
print("Hello World!") |
Output | Hello World! |