Bytecode compiled dynamically typed programming language inspired by Rust, C#, python, etc. (It's a rewrite of Cranberry in Rust and compiled.)
// variable declaration
let x = 10
println($"The value of x is {x}")// function declaration
fn hello() {
for i in 0..10 { // for loop
println(i)
}
}// Standard Library `Std`
let input = Std::IO::read_line("say something: ")
println("You said:", input)