mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 14:25:32 +00:00
11 lines
303 B
Rust
11 lines
303 B
Rust
|
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);
|
||
|
}
|