newt – a programming language for tiny systems by @keith_x11

newt is a programming language for tiny systems, we featured this in the latest Python for microcontrollers hardware newsletter.

Newt is a tiny embeddable language targeting processors with only a few kB of flash and ram.

Newt borrows semantics and syntax from python, but only provides a tiny subset of that large language. The goal is to have Newt programs able to run in a full Python (version 3) implementation so that any knowledge gained in learning Newt will transfer directly to learning Python.

Read more & the source code is available at https://keithp.com/cgit/newt.git/, and @ github https://github.com/keith-packard/newt, it’s licensed under the GPLv2 (or later version).


Related