wasmer/lib/wasi-tests/wasitests/quine.out

15 lines
324 B
Plaintext
Raw Permalink Normal View History

// Args:
// dir: .
2019-05-17 22:31:02 +00:00
use std::fs;
use std::io::Read;
fn main() {
let mut this_file = fs::File::open("wasitests/quine.rs").expect("could not find src file");
let md = this_file.metadata().unwrap();
let mut in_str = String::new();
this_file.read_to_string(&mut in_str).unwrap();
println!("{}", in_str);
}