mirror of
https://github.com/denoland/deno.git
synced 2025-02-06 06:32:09 -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!")
|
||
|
}
|