summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOskar <[email protected]>2024-07-30 17:01:09 +0200
committerOskar <[email protected]>2024-07-30 17:01:09 +0200
commitec9a372cf1e0ec8e72fbb8174595dfadbb86a934 (patch)
treea79306436dd1f19733e1a2228453994de6b7436f
parent642720852ec17b68d8d2bbad300202604c0bb63d (diff)
more exercises
-rw-r--r--for.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/for.cpp b/for.cpp
index 2cccd65..677c1c5 100644
--- a/for.cpp
+++ b/for.cpp
@@ -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;