Conlang/sample-code/truthmachine.cl
John 2fc847fff2 Listen to the truthmachine!
Scream your falsehoods.
2025-03-11 05:03:52 -05:00

9 lines
118 B
Common Lisp

//! Implements a Truth Machine
fn main (n)
match n {
1 => loop print(1),
n => println(n),
}