The
Radon Programming Language

A statically-typed compiled programming language
GitHub Discord Try the Radon Playground

proc add(x int, y int) -> int {
    return a + b;
}

proc main() -> int {
    result := add(2, 2);
    print(result);
}