programming/cpp/vscode/helloworld.cpp

6 lines
95 B
C++
Raw Normal View History

2024-08-19 17:47:45 -06:00
#include <iostream>
int main() {
std::cout << "Hello World!" << std::endl;
return 0;
}