// a tiny brainrot esolang

Aint no need to overthink. Just code like you talk.

$python 67.py hello.67

// playground

Run 67 right here. No need to install lel.

The same interpreter, compiled to run in your browser. Edit the code and hit run.

playground.67
output
// hit ▶ run to see the output // six seven

// the wall of 67

Steal these :D

Tiny programs that actually run. Hit load to drop one into the playground.

hello.67

Hello, six seven

The smallest 67 program there is.

shaddup the canonical 67 program
67("six seven")
sum.67

Sum 1 to 100

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)
countdown.67

Countdown

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")
factorial.67

Factorial

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)
fibonacci.67

Fibonacci

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
times-table.67

Times tables

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