1
0
mirror of https://github.com/fluencelabs/wasmer synced 2025-03-30 14:31:07 +00:00
2019-07-09 11:58:03 -07:00

11 lines
285 B
Rust

fn main() {
#[cfg(target = "wasi")]
let result = std::fs::read_dir("..");
#[cfg(not(target = "wasi"))]
let result: Result<(), String> = Err("placeholder".to_string());
println!(
"Reading the parent directory was okay? {:?}",
result.is_ok()
);
}