Rope data structure implementation in Hare.

feat(source): Created sample program.

+21
+4
.gitignore
··· 1 + build/* 2 + 3 + *.o 4 + *.out
+12
Makefile
··· 1 + BUILD = build/ 2 + SRC = src/*.ha 3 + 4 + run: $(MAIN) 5 + hare run src/main.ha 6 + 7 + build: $(BUILD)/a.out 8 + 9 + $(BUILD)/a.out: src/main.ha 10 + hare build -o $(BUILD)/a.out $(SRC) 11 + 12 + .PHONY: run
+5
src/main.ha
··· 1 + use fmt; 2 + 3 + export fn main() void = { 4 + fmt::println("Hello world!")!; 5 + };