## isevenorodd A simple command line tool to generate a rust function to check if a number is even or odd. ## Usage Create an function that goes from 0 to 100 and checks if the number is even or odd. ```bash isevenorodd 100 ``` If you want to start from a specific number, you can do so by passing the number in the start flag ```bash isevenorodd 100 -s 10 ``` or ```bash isevenorodd 100 --start 10 ```