Top 1K Features Creators Events Podcasts Books Extensions Interviews Blog Explorer CSV

mochi

< >

mochi is an open source programming language created in 2014.

#727on PLDB 10Years Old
Download source code:
git clone https://github.com/i2y/mochi
Source Code

Mochi is a dynamically typed programming language for functional programming and actor-style programming. Its interpreter is written in Python3. The interpreter translates a program written in Mochi to Python3's AST / bytecode.


Example from the web:
def factorial(n, m): if n == 1: m else: factorial(n - 1, n * m)

- Build the next great programming language Add About Search Keywords Livestreams Labs Resources Acknowledgements

Built with Scroll v144.0.0