# Logic::Not
NOT logic block - negates the input binary value
Logic::Not
I
O
# Inputs
| ID | Abbrev | Name | Type | Default | Description |
|---|---|---|---|---|---|
input | I | Input | BOOLEAN | false | Input |
# Outputs
| ID | Abbrev | Name | Type | Default | Description |
|---|---|---|---|---|---|
output | O | Output | BOOLEAN | true | Output |
# Source Code
View Volang source
output::set("output", !input::get("input"))
