Files
learncpp/ch_0/hello_world.cpp

7 lines
85 B
C++
Raw Normal View History

2026-04-01 21:20:43 -05:00
#include <iostream>
int main() {
std::cout << "Hello World!\n";
return 0;
}