aboutsummaryrefslogtreecommitdiff
path: root/test cases/d/10 d cpp/cppmain.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/d/10 d cpp/cppmain.cpp')
-rw-r--r--test cases/d/10 d cpp/cppmain.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test cases/d/10 d cpp/cppmain.cpp b/test cases/d/10 d cpp/cppmain.cpp
index ff90e3f..bcd8c7a 100644
--- a/test cases/d/10 d cpp/cppmain.cpp
+++ b/test cases/d/10 d cpp/cppmain.cpp
@@ -6,13 +6,13 @@ int main(int, char**) {
// initialize D runtime
if (!rt_init())
return 1;
-
+
print_hello(1);
-
+
// terminate D runtime, each initialize call
// must be paired with a terminate call.
if (!rt_term())
return 1;
-
+
return 0;
}