-
Notifications
You must be signed in to change notification settings - Fork 0
false
ffredyk edited this page Jul 23, 2026
·
1 revision
Value Constructor
Nular — no operands.
false
Returns the Boolean value false. Used in conditional expressions, logical operations, and as a literal constant.
false compiles to a nular command that pushes the singleton Boolean false onto the VM stack. It is a compile-time constant — no runtime computation.
if (false) then {
systemChat "Never runs";
};_isRunning = false;
_hasCompleted = false;_flag = false;
if (_condition) then {
_flag = true;
};while { _count > 0 } do {
_count = _count - 1;
if (_count == 0) exitWith {};
};ReadOnly — Boolean values are immutable singletons. Safe from any scheduler.
- Getting Started
- Language Guide
- Type System
- Control Flow
- Functions & Code
- Strings & Text
- Arrays & Collections
- Concurrency
- Promise System
- Thread Safety
- Host API & Embedding
- CLI Tool
- Bytecode Reference
- Multiplayer
- Syntax Sugar
- Optimization Guide
- Benchmarks
- count
- select
- pushBack
- append
- deleteAt
- deleteRange
- resize
- reverse
- sort
- find
- in
- forEach
- freeze
- thaw
- isFrozen
- currentScheduler
- clientOwner
- allSchedulers
- schedulerName
- schedulerExists
- schedulerBudget
- setSchedulerBudget
- fiberCount
- readyFiberCount
- waitingFiberCount
- schedulerLoad
- sendTo