Initial commit

This commit is contained in:
dtb
2025-09-11 21:27:18 -06:00
commit ed900f1e4a
14 changed files with 1201 additions and 0 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
menu: menu.rs
rustc -o $@ $@.rs
.PHONY: clean
clean:
rm -f menu
.PHONY: test
test: menu
./menu <test
.PHONY: install
install: menu