Files

12 lines
225 B
C++
Raw Permalink Normal View History

2026-06-25 02:45:43 +00:00
#include <iostream>
#if __cplusplus >= 202302L
# define print(x) std::print(x)
#else // Old C++ version.
# define print(x) std::cout << x << std::endl
#endif // Check C++ version.
int main() {
print("Hello, World!");
}