turtle.turnRight
From ComputerCraft Wiki
Revision as of 05:15, 13 March 2012 by Uncreative Name (Talk | contribs) (Created page with "{{lowercase}} {{Function |name=turtle.turnRight |args= |api=turtle |returns=boolean whether the turtle succeeded in turning right. |addon=ComputerCraft |desc=Attempts to t...")
| Attempts to turn the turtle right. | |
| Syntax | turtle.turnRight() |
| Returns | boolean whether the turtle succeeded in turning right. |
| Part of | ComputerCraft |
| API | turtle |
Examples
| Turns the turtle right | |
| Code |
print(turtle.turnRight()) |
| Output | true - the turtle cannot fail to turn right |