small exercises for learning Odin
git clone https://github.com/serpens8888/odinlings.git
cd odinlings
odin build .
windows:
./init.bat
linux/mac:
chmod +x init.sh
./init.sh
these commands will only work in the odinlings root folder
use ./odinlings curr to see the current exercise
use ./odinlings run to build and run the current exercise
use ./odinlings next to select the next exercise
use ./odinlings prev to select the previous exercist
use ./odinlings goto <number> to go to a specific exercise
./odinlings curr will give you the path of the current exercise file,
open it in your favorite text editor and try to fix the errors.
if you get stuck there are solved versions in the solutions folder
the provided solutions are not the only way to solve the problems