Difference between revisions of "Print"
From ComputerCraft Wiki
m (Added to CAT:LuaCoreFunctions.) |
|||
Line 13: | Line 13: | ||
}} | }} | ||
}} | }} | ||
+ | |||
+ | [[Category:Lua_Core_Functions]] |
Revision as of 21:34, 28 November 2012
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! |