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
// Simple Static File Server for Windjammer UI QA
// Serves HTML, JS, and WASM files from the current directory

use std::http

@async
fn main() {
    println!("🚀 Windjammer Static File Server")
    println!("Starting on http://localhost:8080")
    println!("Serving files from current directory")
    println!("Press Ctrl+C to stop\n")
    
    http.serve_static("0.0.0.0:8080", ".").await
}