style(lua): 修改REPL提示符从'>>>'变为'#'以简化界面

This commit is contained in:
2025-09-09 19:58:28 +08:00
parent ef76f6db50
commit e60b50b9e1

View File

@@ -35,7 +35,7 @@ print("LeonOS Lua REPL.\nCall exit() to exit.")
local history = {}
while run do
term.setTextColor(colors.white)
io.write("$ lua >>> ")
io.write("$ lua # ")
local data = term.read(nil, history, function(text)
return textutils.complete(text, env)
end)