From ComputerCraft Wiki
Revision as of 04:21, 17 November 2012 by 90.178.169.99 (Talk)
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! |