From ComputerCraft Wiki
Function print | |
Lets you print the string on the terminal. | |
Syntax | print(string) |
Returns | nil |
Part of | ComputerCraft |
API | part of lua |
Examples
Example | |
Prints something. | |
Code |
print ("Hello World!") |
Output | Hello World! |