fmt:
	cargo fmt

clippy:
	cargo clippy

test:
	cargo test

build:
	cargo build

run:
	cargo run parse recur_functions.txt

all: fmt clippy test build