all:
	@echo "make run   |  Runs executable target (example1.rs)"
	@echo "make fmt   |  Formats all source code"
	@echo "make test  |  Runs all tests"

run:
	cargo run --bin example1

fmt:
	cargo fmt

test:
	cargo test