Posted 03 July 2015 - 11:25 PM
Im in the process of making an operating system in ComputerCraft, i was going to make a login screen and then i got the error:
——————————————————-
bios:339: [string "login"] :9: '<eof>' expected
——————————————————-
I got very angry because i tried everyhing to fix it. i suspect there is something wrong
with the image for the login screen, the picture i drew is called lg, the root is: /os/login/lg
——————————————————-
bios:339: [string "login"] :9: '<eof>' expected
——————————————————-
I got very angry because i tried everyhing to fix it. i suspect there is something wrong
with the image for the login screen, the picture i drew is called lg, the root is: /os/login/lg
--Image
_lg = paintutils.loadImage("/os/login/lg")
--functions
clear = funtion()
term.clear()
term.setCursorPos(1, 1)
end
drawLogin = function()
term.setBackgroundColor( colors.white )
end
init = function()
drawLogin()
end
--Main
init()
clear()
print("LOL")