├── README.md ├── helloworld └── helloworld.cpp /README.md: -------------------------------------------------------------------------------- 1 | # learncpp001 -------------------------------------------------------------------------------- /helloworld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timathon/learncpp001/main/helloworld -------------------------------------------------------------------------------- /helloworld.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() { 4 | std::cout << "Hello, world!"; 5 | return 0; 6 | } --------------------------------------------------------------------------------