Modu is a simple and fast interpreted programming language. It is designed to be easy to learn and use like python. But with the speed and efficiency of rust :D With streamlined error messages for easy debugging

Example

let a = 1;
let b = -2;
let c = a - b;
                        
if a == b {
    print("a is equal to b");
}
                        
                        
if a != b {
    print("a is not equal to b");
}
                        
fn example() {
    print("Hello, World");
}
                        
if c == 3 {
    example();
}
                        
                        
// Output
// 
// a is not equal to b
// Hello, World!