test:
	cargo tarpaulin --out Xml
	pycobertura show --format html --output /tmp/coverage.html cobertura.xml
	xdg-open /tmp/coverage.html

callgrind:
	cargo build
	valgrind --tool=callgrind --simulate-cache=yes --callgrind-out-file=callgrind.out target/debug/tulisp examples/fib.lisp
