渲染zh-Hans

ubique

Translation status: 简体中文 reader-locale proof. Code fences render through the zh-Hans pipeline; prose is canonical Latin.

Marks an option or operand as global.

Syntax: ubique

Category#

cli

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 {
}