edlc_codegen_cranelift 0.2.17

Cranelift codegen backend for the EDL compiler
Documentation
1
2
3
4
5
6
7
//! This is a library

/// Prints a message
fn println<T>(msg: T) {
    std::io::print(msg);
    std::io::print("\n");
}