summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cli/cli.cxx13
1 files changed, 13 insertions, 0 deletions
diff --git a/cli/cli.cxx b/cli/cli.cxx
new file mode 100644
index 0000000..08575c6
--- /dev/null
+++ b/cli/cli.cxx
@@ -0,0 +1,13 @@
+// file : cli/cli.cxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2009 Code Synthesis Tools CC
+// license : TBD
+
+#include <iostream>
+
+using namespace std;
+
+int main ()
+{
+ cerr << "CLI compiler driver" << endl;
+}