#include #include "solid.hpp" // TIP To Run code, press or // click the icon in the gutter. int main() { // TIP Press when your caret is at the // lang variable name to see how CLion can help you rename it. auto lang = "C++"; std::cout << "Hello and welcome to " << lang << "!\n"; for (int i = 1; i <= 5; i++) { // TIP Press to start debugging your code. // We have set one // breakpoint for you, but you can always add more by pressing // . std::cout << "i = " << i << std::endl; } return 0; } // TIP See CLion help at jetbrains.com/help/clion/. // Also, you can try interactive lessons for CLion by selecting // 'Help | Learn IDE Features' from the main menu.