RosettaCodeData/Task/Hello-world-Text/C++/hello-world-text-2.cpp

6 lines
115 B
C++
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import module std; // here does the same thing as #include <print>
int main() {
std::print("Hello world!\n");
}