Rope data structure implementation in Hare.
at master 15 lines 276 B view raw
1BUILD = build/ 2SRC = src/*.ha 3 4run: $(MAIN) 5 hare run src/main.ha 6 7build: $(BUILD)/a.out 8 9$(BUILD)/a.out: src/main.ha 10 hare build -o $(BUILD)/a.out $(SRC) 11 12check: build 13 valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes --verbose ./build/a.out 14 15.PHONY: run