mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-19 10:06:55 +00:00
18 lines
352 B
Rust
18 lines
352 B
Rust
extern crate bstr;
|
|
|
|
use std::error::Error;
|
|
use std::io;
|
|
|
|
use bstr::{io::BufReadExt, ByteSlice};
|
|
|
|
fn main() -> Result<(), Box<dyn Error>> {
|
|
let stdin = io::stdin();
|
|
let mut words = 0;
|
|
stdin.lock().for_byte_line_with_terminator(|line| {
|
|
words += line.words().count();
|
|
Ok(true)
|
|
})?;
|
|
println!("{}", words);
|
|
Ok(())
|
|
}
|