Renderingen-US

mone

Translation status: English reader-locale proof. Code fences render through the en pipeline; prose is canonical Latin.

Writes a warning message.

Syntax: mone <expression>

Category#

output

Examples#

radix/corpus/mone/mone.fab (canonical · keyword)#

Writes a warning message.

# =============================================================================
# mone — Writes a warning message.
# =============================================================================
#
# What this teaches:
#   • the `mone` keyword — emits a warning-style diagnostic (distinct from `nota`/`vide`)
#   • diagnostic output categories — mone for warnings vs scribe/vide for other I/O
#
# Common mistakes:
#   • Confusing mone (stderr warning) with nota (diagnostic info) — mone emits warnings, nota emits neutral informational output.
#
# See also: scribe, vide
# =============================================================================

# mone diagnostic output
#
# mone <expr>  -- emit a warning-style diagnostic (distinct from nota/vide)
#
# GRAMMAR:
#   outputStmt :← 'mone' expr
#
# EXPECTED OUTPUT:
#   mone-style warning diagnostic (single mone call).

main {
    warn "cave"
}