xassembler 0.5.1

Compiler tools for the xasm programming language
Documentation
extern crate xassembler;
use xassembler::{compile, Rust};

#[test]
fn comment_test() {
    assert_eq!(
        compile::<Rust>(
            r#"
// hello comments!
// hello comments!
println("Testing!") // Other comment!
// Last comment
// Last comment
"#
        )
        .unwrap(),
        compile::<Rust>(
            r#"
println("Testing!")
"#
        )
        .unwrap()
    );
}