From 6ccf7c4c710d56da803c4a09244f126710bde686 Mon Sep 17 00:00:00 2001 From: "N0\\A" Date: Sat, 11 Jul 2026 12:16:59 +0200 Subject: [PATCH] Move to src/ --- Makefile | 6 +++--- main.v => src/main.v | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename main.v => src/main.v (100%) diff --git a/Makefile b/Makefile index 1e01ecf..fb1266a 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,13 @@ all: build build: - v . + v src/ run: - v run . + v run src/ clean: rm -f TypoML format: - v fmt -w . + v fmt -w src/ diff --git a/main.v b/src/main.v similarity index 100% rename from main.v rename to src/main.v