6 lines
115 B
C++
6 lines
115 B
C++
|
|
import module std; // here does the same thing as #include <print>
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
std::print("Hello world!\n");
|
||
|
|
}
|