mone
Translation status: ภาษาไทย reader-locale proof. Code fences render through the th-TH pipeline; prose is canonical Latin.
Writes a warning message.
Syntax: mone <expression>
Category#
output
Related#
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"
}