7 lines
84 B
C++
Raw Normal View History

2024-08-25 12:32:57 -06:00
#include <iostream>
int main()
{
std::cout << "Hello World!\n";
return 0;
}