diff options
author | Oskar <[email protected]> | 2024-07-30 17:01:09 +0200 |
---|---|---|
committer | Oskar <[email protected]> | 2024-07-30 17:01:09 +0200 |
commit | ec9a372cf1e0ec8e72fbb8174595dfadbb86a934 (patch) | |
tree | a79306436dd1f19733e1a2228453994de6b7436f | |
parent | 642720852ec17b68d8d2bbad300202604c0bb63d (diff) |
more exercises
-rw-r--r-- | for.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -19,7 +19,7 @@ int main (void) { for(int val2 = 10 ; val2 >= 1 ; val2--) { std::cout << val2 << std::endl; } - + std::cout << "Done." << std::endl; // We send text to 'cout' a so called 'ostream' int64_t one = 0; int64_t two = 0; |