From 163f85b896d60793b196757e1cdf7825ca5e68ca Mon Sep 17 00:00:00 2001 From: Maxwell Date: Mon, 11 Aug 2025 13:29:10 +1000 Subject: [PATCH] Fix a typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a0f2dda..ebd2422 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Ground is an interpreter which processes and interprets Ground instructions. It Clone the repo and compile with your favourite C++ compiler: ``` - g++ src/main.cpp -std=C++17 -O3 -o ground + g++ src/main.cpp -std=c++17 -O3 -o ground ``` (You can omit the -std flag on systems which default to the latest standard, and the -O3 flag if you're fine with a slightly slower interpreter.)