(This is my first HN Post)
I've been developing a programming language with help from the book Crafting Interpreters (http://craftinginterpreters.com/).
I want you to meet the Motion Language:
var x;
var y => 10; var z => 2;
print x * y;
func add(a, b) => {
var new => (a + b);
print new;
return new;
}
Motion is a dynamically typed general purpose programming language designed to help developers write fast, clean, and efficient code for a modern world.Motion is created in pure ANSI C, with no dependencies.
What are your thoughts? Any ideas are welcome.
- UPWRD