all: build

build:
	odin build src/ -out:TypoML

run:
	odin run src/

clean:
	rm -f TypoML

format:
	odinfmt -w src/
