mochi is an open source programming language created in 2014.
#735on PLDB | 10Years Old |
git clone https://github.com/i2y/mochi
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)