mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 15:39:20 +00:00
18 lines
335 B
Rust
18 lines
335 B
Rust
extern crate bstr;
|
|
|
|
use std::error::Error;
|
|
use std::io;
|
|
|
|
use bstr::io::BufReadExt;
|
|
|
|
fn main() -> Result<(), Box<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(())
|
|
}
|