A high-level language similar to Ruby and Python. Hoping to create a collection of helpful standard lib functions to help in interviews.
Things like:
- Dynamic types
- Simple to use double-ended queues/lists
- Simple to use heap and tree datastructures
- Variety of string helper functions
Theres a file in test/sample.kiwi which you can add your code into. Right now it's pretty basic
// Math
var x = (100 + 15) / 3;
print x;
// Conditions
print "foo" or "bar";
// Variable Declaration
var name = "John";
// Variable Assignment
name = "Jane";
// Printing to STDOUT
print name;- ✅ Lexer Complete
- ✅ Parser Complete
- ✅ Interpreter Complete
- ✅ Support for Expressions
- ✅ Support for Statements
- ❌ Synchronize on Errors
- ❌ Loops
- ❌ Funcions
- ❌ Lists Support
- ❌ Maps Support
if statements