dyon 0.1.0

A rusty dynamically typed scripting language
Documentation
fn hello_world() {
    println("hello world!")
}

fn say(msg) {
    println(msg)
}

fn say_msg_to(msg, to) {
    println(to + ": " + msg)
}