العرضar

lineam

Translation status: العربية reader-locale proof. Code fences render through the ar pipeline; prose is canonical Latin.

Reads one line of input.

Syntax: lege lineam

Category#

io

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