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
// Conformance Test: std::async_runtime (tokio backend via windjammer_runtime)
//
// EXPECTED OUTPUT:
// [async_sleep] ok
// [async_all] PASSED

use std::async_runtime

fn test_sleep_ms_blocking() {
    async_runtime::sleep_ms_blocking(10)
    println("[async_sleep] ok")
}

fn main() {
    test_sleep_ms_blocking()
    println("[async_all] PASSED")
}