This commit is contained in:
2025-12-17 12:33:44 +01:00
commit e9df5da409
8 changed files with 147 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#include <iostream>
// TIP To <b>Run</b> code, press <shortcut actionId="Run"/> or click the <icon src="AllIcons.Actions.Execute"/> icon in the gutter.
int main() {
std::cout << "Hello World!" << std::endl;
return 0;
// TIP See CLion help at <a href="https://www.jetbrains.com/help/clion/">jetbrains.com/help/clion/</a>. Also, you can try interactive lessons for CLion by selecting 'Help | Learn IDE Features' from the main menu.
}