.PHONY: run-examples
run-examples:
	@for file in _examples/*.go; do \
	  go run $$file; \
	  done;
