Listen to the truthmachine!

Scream your falsehoods.
This commit is contained in:
John 2025-03-11 05:03:52 -05:00
parent 4bc088f277
commit 2fc847fff2

View File

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