about summary refs log tree commit diff
path: root/cpptour/count.cc
diff options
context:
space:
mode:
Diffstat (limited to 'cpptour/count.cc')
-rw-r--r--cpptour/count.cc11
1 files changed, 0 insertions, 11 deletions
diff --git a/cpptour/count.cc b/cpptour/count.cc
deleted file mode 100644
index a047f04..0000000
--- a/cpptour/count.cc
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <iostream>
-
-using namespace std;
-
-int
-main ()
-{
-  int v[] {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
-  for (auto& x : v)
-    cout << x << endl;
-}