Fluent-c: A programming Language
Description
Using C, I wrote a dynamically typed, interpreted programming language. It currently supports functionality for printing to STDOUT, strings, custom functions and custom variables.
The programming language has a parser, lexer and an AST. The reason the language is interpreted and not compiled is that building a compiler that works on different architectures/OS is beyond my abilities at the moment, but is something I hope to be able to do in the future. I chose C because it is a high performance language, and to use C beyond the scope of the classroom