meson minimal
This commit is contained in:
commit
41bd5e4433
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
build
|
||||
6
main.cc
Normal file
6
main.cc
Normal 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
3
meson.build
Normal file
@ -0,0 +1,3 @@
|
||||
project('hello-world', 'cpp', default_options : ['cpp_std=c++23'])
|
||||
|
||||
executable('hw', 'main.cc')
|
||||
Loading…
x
Reference in New Issue
Block a user