mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
10 lines
204 B
Rust
10 lines
204 B
Rust
|
// { "stdin": "Hello, stdin!" }
|
||
|
|
||
|
use std::io::Read;
|
||
|
|
||
|
fn main() {
|
||
|
let mut buffer = String::new();
|
||
|
assert!(std::io::stdin().read_to_string(&mut buffer).is_ok());
|
||
|
assert_eq!(buffer, "Hello, stdin!")
|
||
|
}
|