From 8f1093f0e00f9b1df7ce343a879303fd56a95d08 Mon Sep 17 00:00:00 2001 From: Alex AUVOLAT Date: Tue, 29 Oct 2013 17:42:34 +0100 Subject: First commit. --- tests/exec/for1.cpp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tests/exec/for1.cpp (limited to 'tests/exec/for1.cpp') diff --git a/tests/exec/for1.cpp b/tests/exec/for1.cpp new file mode 100644 index 0000000..3ac56de --- /dev/null +++ b/tests/exec/for1.cpp @@ -0,0 +1,7 @@ +#include + +int main() { + int i; + for (i = 0; i < 10; i++) + std::cout << "i = " << i << "\n"; +} -- cgit v1.2.3