Posted 22 October 2012 - 05:57 PM
im busy with my own code for an printer im done with the code but while running it it shows an error i cant fix
bios:335: [string "printpagina"]:2: '=' expected
the code
can someone fix it thank you!
bios:335: [string "printpagina"]:2: '=' expected
the code
term.clear
term.setCursorPos( 1, 1 )
write("printer zijde kies uit "right" "left" "top" ENZ. - ")
local ZIJDE = read()
printer = peripheral.wrap( ZIJDE )
printer.newPage()
write("welke tekst moet er geprint worden? - ")
local TEKST = read()
printer.write( TEKST )
write("Titel? - ")
local TITEL = read()
printer.setPageTitle( TITEL )
printer.endPage()
textutils.slowPrint("Printen Voltooid")
else
textutils.slowPrint("Printen Mislukt! Check ,inkt ,papier ,code en ga dan door u wordt nu terug gestuurd!")
can someone fix it thank you!