Eryx

Eryx is a decently fast and simple dynamically typed programming language similar to javascript/python.


Example

import "math" as "maths";

const threshold = 10;
let value = 7;

func checkValue(val) {
    if (val < threshold) {
        print("Value is below the threshold.");
    } else {
        print("Value meets or exceeds the threshold.");
    }
}

checkValue(value);
# Output: Value is below the threshold.

print("The square root of 16 is " + str(maths.sqrt(16)));
# Output: The square root of 16 is 4