PowerShell-native. No Python. Pure venom. D4 Jalava Engine — Temporal Execution.
strike — Function Declaration
// Strike with body
strike greet(name) {
hiss "Hello, World"
shed 0
}
// Single-expression strike
strike add(a, b) -> a + b
// Dimensional strike
strike[D7] why() {
hiss "Because Nathan built it."
}
fang / shedskin — Conditional
fang (conviction > 75) {
hiss "High conviction."
} shedskin {
hiss "Recalibrating."
}
// Else if chain
fang (x > 0) { hiss "Positive" }
shedskin fang (x < 0) { hiss "Negative" }
shedskin { hiss "Zero" }
coil — Loop
constrict i = 1
coil (i <= 7) {
hiss f"Dimension D{i}: Active"
constrict i = i + 1
}
constrict — Variable Binding
// Simple binding
constrict name = "Nathan Brown"
constrict conviction = 100
// Typed binding
constrict name:pattern = "Mamba"
constrict value:scale = 42
hiss — Output
// String output
hiss "Mamba initialized."
// F-string interpolation
hiss f"Value: {x}, Name: {name}"
// Expression output
hiss conviction
venom / shed / empty
// Import (venom)
venom "prism.inference"
// Return (shed)
shed 42
// Error sink (empty)
empty() // Routes to EMPTY# — never crashes
D1 — Plankva Z
strike[D1] physics() {
// Base-layer logic, assembly
}
D4 — Jalava (Mamba)
strike[D4] compile() {
// Temporal execution, bridges
}
D7 — Crystal
strike[D7] why() {
// Ontological law, the "why"
}