Convictional Reference · Deterministic Execution · EMPTY#-Safe · Bound by Contained Pi
| Keyword | Definition | Transpiles To | Category |
|---|---|---|---|
| highkey | Hard assertion. Must be true or program halts. | if(truth(x)===true) | Control Flow |
| lowkey | Soft assertion. Preferred but not enforced. | if(truth(x)!==false) | Control Flow |
| pulse | Defines a function / cognitive unit. | function | Structure |
| cook | Deterministic transform. Input → Output. | __LAVA.cook(x) | Transform |
| vibe | Clamped scalar. Range [-1.0, 1.0]. | __LAVA.vibe(x) | Type System |
| truth | Truth check. Returns true, false, or 'fr'. | __LAVA.truth(x) | Type System |
| void | Stable zero-state. Intentional absence. | __LAVA.void() | State |
| bro | Interrupt signal. Routes to EMPTY#. | throw Error('bro_interrupt') | Error |
| gap | State transition. A → B. | /* gap: a -> b */ | Flow |
| stabilize | Pipes confirmation to the Body (console). | __LAVA.stabilize(msg) | Output |
| emptycatch | Try block. Errors route to void, never crash. | try{...}catch(e){return void} | Safety |
| fr | "For real." Third truth state. | 'fr' | Type System |
| wild | Anomaly detected. Unstable state marker. | {_wild:true} | Type System |
| Slang | Meaning | Transpiles To | Example |
|---|---|---|---|
| bet | Confirmed. I'm on it. | stabilize("bet — confirmed") | "bet, run it" |
| facts | Absolute truth. Undeniable. | highkey(true) | "facts, no cap" |
| no cap | No lie. I'm being real. | highkey(true) | "no cap, that's valid" |
| deadass | Seriously. For real for real. | highkey(true) | "deadass, send it" |
| word | I agree. Truth. | truth(true) | "word, bet that" |
| valid | Legitimate. Checks out. | highkey(truth(true)) | "this is valid" |
| goated | Peak state. Greatest of all time. | stabilize("goated") | "goated, no cap" |
| Slang | Meaning | Transpiles To | Example |
|---|---|---|---|
| cap | Lie. False. Invalid. | bro("cap detected") | "cap, that's sus" |
| nah | No. Reject. | lowkey(false) | "nah, washed" |
| pressed | Too worked up. Overreacting. | bro("too pressed") | "pressed, bro" |
| sus | Suspicious. Unverified. | lowkey(truth(false)) | "that's sus" |
| washed | Done. Over. Finished. | void | "washed, let it go" |
| Slang | Meaning | Transpiles To | Example |
|---|---|---|---|
| mad | Very. Extremely. (East Coast) | vibe(0.9) | "mad facts" |
| hella | A lot. Maximum. (West Coast) | vibe(1.0) | "hella valid" |
| wicked | Intensely. (New England) | vibe(0.95) | "wicked good" |
| bare | Very. Lots. (UK/London) | vibe(0.7) | "bare facts" |
| Slang | Meaning | Transpiles To | Example |
|---|---|---|---|
| run it | Execute. Start the function. | pulse | "bet, run it" |
| send it | Commit. Push. Deploy. | stabilize("sent") | "send it RN" |
| pull up | Transition. Come through. | gap | "pull up, switch up" |
| bet that | Transform this. Cook it. | cook | "bet that, flip it" |
| Slang | Meaning | Transpiles To | Example |
|---|---|---|---|
| flip | Transform. Change state. | cook | "flip the pattern" |
| switch up | Change direction. State shift. | gap | "switch up the flow" |
| glow up | Level up. Peak transformation. | stabilize("glow up") | "glow up complete" |
| remix | Reconstruct. Sovereign rebuild. | cook | "remix the structure" |
| Slang | Meaning | Transpiles To |
|---|---|---|
| RN | Right now. Immediate execution. | /* urgency: right now */ |
| ASAP | As soon as possible. | /* urgency: asap */ |