meson minimal

This commit is contained in:
Artur Mukhamadiev 2025-07-03 19:16:43 +00:00
commit 41bd5e4433
3 changed files with 10 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
build

6
main.cc Normal file
View File

@ -0,0 +1,6 @@
#include <print>
int main() {
std::print("{2} {1}{0}!\n", 23, "C++", "Hello");
return 0;
}

3
meson.build Normal file
View File

@ -0,0 +1,3 @@
project('hello-world', 'cpp', default_options : ['cpp_std=c++23'])
executable('hw', 'main.cc')