https://github.com/tk04/rust_wordcount
A command line application that inputs a .txt file format and returns the occurrence of the maximum number of words in that file. Integrated std::fs,std::env and std::io modules in order to implement this program.
https://github.com/tk04/rust_wordcount
Last synced: 11 months ago
JSON representation
A command line application that inputs a .txt file format and returns the occurrence of the maximum number of words in that file. Integrated std::fs,std::env and std::io modules in order to implement this program.
- Host: GitHub
- URL: https://github.com/tk04/rust_wordcount
- Owner: tk04
- Created: 2021-11-01T17:35:32.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-11-02T01:52:10.000Z (over 4 years ago)
- Last Synced: 2025-02-24T10:19:05.058Z (over 1 year ago)
- Language: Rust
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rust_WordCount
A command line application that inputs a .txt file format and returns the occurrence of the maximum number of words in that file. Integrated std::fs,std::env and std::io modules in order to implement this program.
How to Run
```
$ cargo build
$ cargo run example.txt
```