# Easy Average Grade Calculator This tool is a easy average grade average calulcator written in Rust. It takes a list of graded to calculated the average and can be used as a library by other applications. [Thebestdegree.com](https://www.thebestdegree.com) provided a more complex [grade calulcator](https://www.thebestdegree.com/grade-calculator/) for weighted grade calculation for college or high school students and teachers. These tools are all implemented in Rust. ## Usage ## The easy grade calulcator can either read the input grades from arguments or a text file as shown below: ```bash easy-grade 4.5 3.5 ``` Another way to use the tool would be to create a txt file as the input grades. Create a file `grades.txt` with the contents: ``` 4.5 3.5 2.5 ``` The average for these grades can be calculcated as below: ```bash cat ~/grades.txt | easy-grade ```