husk-lang 0.1.1

Rust's syntax meets JavaScript's flexibility - Choose your own adventure: Run interpreted for rapid development or transpile to JavaScript for the entire npm ecosystem
Documentation
1
2
3
4
5
6
7
8
9
pub mod helper;

pub fn helper1() {
    println!("Helper 1 from utils");
}

pub fn helper2() {
    println!("Helper 2 from utils");
}