windjammer 0.48.0

A simple language inspired by Go, Ruby, and Elixir that transpiles to Rust - 80% of Rust's power with 20% of the complexity
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Command-line application template
use std::env
use std::process

fn main() {
    let args = env.args()
    
    if args.len() < 2 {
        println!("Usage: {} <name>", args[0])
        println!("Example: {} World", args[0])
        process.exit(1)
    }
    
    let name = args[1]
    println!("Hello, {}!", name)
    println!("Welcome to your new Windjammer CLI application!")
}