Lots of work

This commit is contained in:
2026-03-21 09:58:39 -05:00
parent a6690b4382
commit 88b6424bf6
49 changed files with 947 additions and 67 deletions

View File

@@ -0,0 +1,9 @@
name: executable
gpid: examples
semv: 1.0.0
targets:
- name: example
type: executable
srcs:
- ./entry.cpp

View File

@@ -0,0 +1,11 @@
#include <iostream>
#if __cplusplus >= 202302L
# define print(x) std::print(#x)
#else // Old C++ version.
# define print(x) std::cout << #x << std::endl
#endif // Check C++ version.
int main() {
print("Hello, World!");
}