all: build

build: fmt
	odin build src/ -out:TypoML

clean: fmt
	rm -f TypoML

format:
	odinfmt -w src/

fmt: format
