programming/cpp/vscode/helloworld.cpp
2024-08-19 17:47:45 -06:00

6 lines
95 B
C++

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