mochi is an open source programming language created in 2014.
git clone https://github.com/i2y/mochi
#1077on PLDB | 9Years Old |
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.
def factorial(n, m):
if n == 1:
m
else:
factorial(n - 1, n * m)