mirror of
https://github.com/lune-org/lune.git
synced 2025-04-04 10:30:54 +01:00
21 lines
450 B
Text
21 lines
450 B
Text
local stdio = require("@lune/stdio")
|
|
|
|
local function linePrefix(prefix:string)
|
|
print("-------")
|
|
stdio.write(prefix)
|
|
local t = stdio.readLine()
|
|
print("-------")
|
|
return t
|
|
end
|
|
|
|
local function toEndPrefix(prefix:string)
|
|
print("-------")
|
|
stdio.write(prefix)
|
|
local t = stdio.readToEnd()
|
|
print("-------")
|
|
return t
|
|
end
|
|
|
|
print(linePrefix("READLINE> "))
|
|
print(linePrefix("READLINE> "))
|
|
print(toEndPrefix("READTOEND> "))
|