riser-lang

status: 200 status: 200

2

🟠 Language Overview

riser_ is a dynamically-typed programming language that supports basic programming constructs like variables, control structures, functions, and operators.

🟡 Language Features

🟠 Example Program in riser_

// comment

func add(a, b) {
    return a + b;
}

let x = 5;
let y = 10;
let result = add(x, y);

if (result > 10) {
    print("Result is greater than 10");
} else {
    print("Result is 10 or less");
}

Note: This implementation does not purely follow standard compiler/interpreter design principles and the theoretical aspects of formal languages and automata.