Posted 29 August 2014 - 01:22 PM
Hello, ComputerCraft Community!
I was trying to create a pinwheel in one of my programs and for some reason the syntax highlighter does not pick up on a [print("\")]. Am I doing something wrong? Here is the code I have for the pinwheel:
Any suggestions are accepted! Thanks!
I was trying to create a pinwheel in one of my programs and for some reason the syntax highlighter does not pick up on a [print("\")]. Am I doing something wrong? Here is the code I have for the pinwheel:
term.setCursorPos(1,1)
print("|")
sleep(0.5)
term.setCursorPos(1,1)
print("/")
sleep(0.5)
term.setCursorPos(1,1)
print("-")
sleep(0.5)
term.setCursorPos(1,1)
print("\")
sleep(0.5)
term.setCursorPos(1,1)
print("|")
Any suggestions are accepted! Thanks!