Skip to content

marbelous-lang/marbelous.py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

89 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

marbelous.py

Python interpreter for Marbelous

Marbelous is an esoteric programming language based on numbered marbles falling down a Rube Goldberg like board full of devices that move and manipulate the marbles.

Creation of this language was inspired by conversation in the Programming Puzzles & Code Golf StackExchange chat room, forked to a dedicated chat room later.

Credit for the original idea goes to cjfaure. Additional language design input from Martin Büttner, Nathan Merrill, overactor, sparr, githubphagocyte, es1024, VisualMelon.

First versions of interpreter by sparr.

Example program (more in examples/):

# calculates the nth fibonacci number, recursively
}0 }0 }0 .. # three copies of }0, call them A B C
-- &0 >1 {0 # decrement A, hold B for sync, return C if it's <2
&0 -- >4 -- # hold A for sync, decrement B, divert and decrement C if it's <5
-- Fb &0 {0 # decrement A, recurse with B, release sync or return C-1
Fb .. \/ .. # recurse with A, do nothing with B, trash C
\\ {0 .. .. # add A to B and return it

Releases

No releases published

Packages

No packages published

Languages