io
luau
local io = require("@lute/io")WARNING
These APIs are still open to future evolution. In new major versions, they may change in backwards incompatible ways.
Summary
| Entry | Description |
|---|---|
| read | Reads a line from standard input and returns it as a string. |
| write | Writes one or more strings to standard output without a trailing newline. |
Functions and Properties
io.read
Reads a line from standard input and returns it as a string.
luau
() -> stringio.write
Writes one or more strings to standard output without a trailing newline.
luau
(...: string) -> ()