control

Foundational schema aliases, low-level runtime bindings, trait predicates, callable adapters, stack helpers, control combinators, and numeric utilities used throughout the Standard Library.


C runtime bindings


Schema aliases and constants


Trait predicates


Functional helpers and comparisons


References and stack helpers


Control helpers and diagnostics


Numeric helpers


Collection helpers


Examples

Numeric helpers

"control" use

{} () {} [
  3 5 max printStack _:;
  3 5 min printStack _:;
  5 0 10 within printStack _:;
] "main" exportFunction

Expected Output During Compilation

5 Cref
3 Cref
TRUE

times

"control" use

{} () {} [
  3 [i printStack _:;] times
] "main" exportFunction

Expected Output During Compilation

0 Cref
1 Cref
2 Cref

Runtime example

"control" use
"String" use

{} Int32 {} [
  ("max=" 3 5 max LF
   "min=" 3 5 min LF
   "within=" 5 0 10 within LF) printList
  0
] "main" exportFunction

Expected Output

max=5
min=3
within=TRUE

See also