Hello, six seven
The smallest 67 program there is.
shaddup the canonical 67 program 67("six seven")
// a tiny brainrot esolang
Aint no need to overthink. Just code like you talk.
$python 67.py hello.67// playground
The same interpreter, compiled to run in your browser. Edit the code and hit run.
// the wall of 67
Tiny programs that actually run. Hit load to drop one into the playground.
The smallest 67 program there is.
shaddup the canonical 67 program 67("six seven")
A while loop adding every number up to 100. Spoiler: 5050.
shaddup add up every number from 1 to 100 bruh n is 1 bruh total is 0 6767 n < 101: bruh total is total + n bruh n is n + 1 67(total)
Count down from 5 and blast off.
shaddup blast off, bruh bruh n is 5 6767 n > 0: 67(n) bruh n is n - 1 67("blast off")
6 factorial the hard way — multiply down to 1. No cap, it's 720.
shaddup 6 factorial bruh n is 6 bruh fact is 1 6767 n > 1: bruh fact is fact * n bruh n is n - 1 67(fact)
The first 10 Fibonacci numbers with two rolling variables.
shaddup the first 10 fibonacci numbers bruh a is 0 bruh b is 1 bruh count is 10 6767 count > 0: 67(a) bruh next is a + b bruh a is b bruh b is next bruh count is count - 1
Nested 6767 loops — a loop inside a loop.
shaddup multiplication tables 1 through 3 bruh i is 1 6767 i <= 3: bruh j is 1 6767 j <= 3: 67(i * j) bruh j is j + 1 67("---") bruh i is i + 1