Top 1,000 Features Creators Resources Blog Explorer Download
GitHub icon

Berry

< >

Berry is a programming language created in 2018 by 官文亮.

Source code:
git clone https://github.com/berry-lang/berry
#839on PLDB 6Years Old

A ultra-lightweight embedded scripting language optimized for microcontrollers.


Example from the web:
def fib(x) if (x <= 1) return x end return fib(x - 1) + fib(x - 2) end

View source

- Build the next great programming language · About · Acknowledgements · Extensions · Day 625 · feedback@pldb.io