Files
learncpp/ch_0/hello_world/main.cpp
2026-04-02 22:12:13 -05:00

7 lines
86 B
C++

#include <iostream>
int main() {
std::cout << "Hello, World!\n";
return 0;
}