12 lines
227 B
C++
12 lines
227 B
C++
#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!");
|
|
}
|