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