8 lines
97 B
C++
Raw Normal View History

2024-08-05 17:07:51 +08:00
#include <iostream>
int main()
{
std::cout << "Hello, World!" << std::endl;
return 0;
}