Add iostream and initialization

This commit is contained in:
2026-04-04 22:33:20 -05:00
parent 13c53e6181
commit 703fa75e7e
6 changed files with 52 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
#include <iostream>
int main() {
int x { 0 };
double pi { 3.1415 };
[[maybe_unused]] double tau { 6.2830 };
std::cout << pi;
return 0;
}