ubique
Translation status: ภาษาไทย reader-locale proof. Code fences render through the th-TH pipeline; prose is canonical Latin.
Marks an option or operand as global.
Syntax: ubique
Category#
cli
Related#
Examples#
radix/corpus/ubique/ubique.fab (canonical · keyword)#
Marks an option or operand as global.
# =============================================================================
# ubique — Marks an option or operand as global.
# =============================================================================
#
# What this teaches:
# • Global CLI flags — `ubique` marks options available at any command level
# • CLI metadata — combining `@ cli`, `@ optio`, and `ubique` for rich command definitions
#
# Common mistakes:
# • confusing ubique (global CLI flag marker) with operandus (positional argument) — ubique applies only to option declarations
#
# See also: optio, operandus
# =============================================================================
# ubique — global CLI option flag
#
# GRAMMAR:
# annotationFlag :← 'ubique'
#
# EXPECTED OUTPUT:
# No incipit — declaration or test-runner surface only.
#
# BACKEND:
# declaration-only CLI metadata (whitelist: ubique/ubique.fab).
#
@ cli "ubique-smoke"
@ option verbose short "v" long "verbose" type bool global description "Global verbose flag"
main args args {
}