Browse Source

Basic main

DricomDragon 5 years ago
parent
commit
a57a6abd60
1 changed files with 9 additions and 0 deletions
  1. 9 0
      containers/main.cpp

+ 9 - 0
containers/main.cpp

@@ -0,0 +1,9 @@
+#include <iostream>
+
+using namespace std;
+
+int main() {
+	cout << "Hello containers !" << endl;
+
+	return 0;
+}