README notice

This commit is contained in:
Robin Müller 2022-10-05 10:14:23 +02:00
parent 13c776a19e
commit 0e5443e598
No known key found for this signature in database
GPG Key ID: 11D4952C8CCEF814
2 changed files with 3 additions and 0 deletions

View File

@ -16,6 +16,7 @@ or do not want to use a VM, consider using [Ubuntu WSL](https://ubuntu.com/wsl)
2. [`cmake`](https://cmake.org/) installed as the build system generator
3. C++ compiler installed. On Windows, you can use [MinGW64](https://www.msys2.org/) or
[clang](https://releases.llvm.org/download.html). On Unix, you can use the pre-installed GCC
but you might have to install `g++` or `build-essentials` explicitely.
4. Build system for C/C++ installed. For Windows, it is recommended to use [ninja](https://ninja-build.org/).
On Unix, you can use the pre-installed `make` tool.

View File

@ -2,6 +2,8 @@
using namespace std;
static uint32_t SHARED_COUNTER = 0;
int main() {
cout << "Hello World" << endl;
}