等棄
Translation status: 繁體中文 reader-locale proof. Term names and code fences follow the zh-Hant pack; supporting prose may still be English.
Awaits a promissum and discards the success value.
Aliases: await
Syntax: tacebit future
Category#
async
Related#
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" }