lineam
Translation status: हिन्दी reader-locale proof. Code fences render through the hi pipeline; prose is canonical Latin.
Reads one line of input.
Syntax: lege lineam
Category#
io
Related#
Examples#
radix/corpus/lineam/lineam.fab (canonical · keyword)#
Reads one line of input.
# =============================================================================
# lineam — Reads one line of input.
# =============================================================================
#
# What this teaches:
# • line-oriented input mode — `lege lineam` reads a single line from stdin
#
# Common mistakes:
# • Confusing lineam (reads one line without trailing newline) with nota (writes diagnostic output with newline).
#
# See also: lege
# =============================================================================
# lineam — line-oriented lege read
#
# GRAMMAR:
# readMode :← 'lege' 'lineam'
#
# EXPECTED OUTPUT:
# Scalar stdout smoke (see body).
#
# BACKEND:
# Rust/Go/roundtrip whitelist like lege/lege.fab.
#
main {
print "lineam exemplum — stdin read deferred in harness"
}Expected output:
lineam exemplum — stdin read deferred in harness