From c827efeeef0cdc63c5366e9d945fa53c09988491 Mon Sep 17 00:00:00 2001 From: omagdy7 Date: Sun, 9 Apr 2023 03:09:19 +0200 Subject: Solve day7 in rust --- 2022/Cpp/Day7/Makefile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 2022/Cpp/Day7/Makefile (limited to '2022/Cpp/Day7/Makefile') diff --git a/2022/Cpp/Day7/Makefile b/2022/Cpp/Day7/Makefile new file mode 100755 index 0000000..08000ae --- /dev/null +++ b/2022/Cpp/Day7/Makefile @@ -0,0 +1,5 @@ +all: + @g++ main.cpp -o ans.o + +run: + ./ans.o < input.txt -- cgit v1.2.3