os.sleep
From ComputerCraft Wiki
| Pauses the computer for a number of seconds | |
| Syntax | os.sleep(timeout) |
| Returns | nil |
| Part of | ComputerCraft |
| API | os |
Examples
| Pause for 3 seconds | |
| Code |
os.sleep( 3 ) |
You can also just use sleep( timeout )