การเรนเดอร์th-TH

tacebit

Translation status: ภาษาไทย reader-locale proof. Code fences render through the th-TH pipeline; prose is canonical Latin.

Awaits a promissum and discards the success value.

Aliases: await

Syntax: tacebit future

Category#

async

Examples#

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

Awaits a promissum and discards the success value.

# =============================================================================
# tacebit — Await-discard
# =============================================================================
#
# What this teaches:
#   • Await any success type `T` and discard the resolved value.
#   • Prefer when side effects matter and the success payload is unused.
#
# See also: figendum, reddet, fiet, promissum
# =============================================================================

# GRAMMAR:
#   awaitDiscard :← 'tacebit' expr

functio responde() fiet → numerus { redde 1 }

incipiet { tacebit responde() nota "done" }