syscall.TTY_print("HyperionOS lua")local a=""local b=false;local c=false;local d=setmetatable({},{__index=_ENV})printInline("> ")while true do local e={syscall.IO_pullEvent()}if e[1]then if not b then if e[1]=="keyTyped"then if e[3]=="\b"then if#a>0 then a=a:sub(1,#a-1)printInline("\b")end elseif e[3]=="\n"then print("")b=true;if a==""then printInline("> ")b=false elseif a=="exit"then break else local f=load(a,"@Lua","t",d)local g,h=xpcall(f,debug.traceback)if not g then print(h)end;b=false;a=""end else a=a..e[3]printInline(e[3])end end end;c=false else c=true end;if c then sleep(.05)end end