mirror of
https://github.com/denoland/deno.git
synced 2024-12-12 10:37:52 -05:00
10 lines
274 B
Rust
10 lines
274 B
Rust
|
// { "preopens": { "/scratch": "scratch" }, "files": { "scratch/file": "file" } }
|
||
|
|
||
|
use std::io::Write;
|
||
|
|
||
|
fn main() {
|
||
|
let mut file = std::fs::File::create("/scratch/file").unwrap();
|
||
|
assert_eq!(file.write(b"fi").unwrap(), 2);
|
||
|
assert_eq!(file.write(b"le").unwrap(), 2);
|
||
|
}
|