Sign in
chromium
/
external
/
github.com
/
kripken
/
emscripten
/
refs/heads/test-integer-limits
/
.
/
test
/
other
/
hello_world.cppm
blob: 192eb1f121a03d26cf56cc7f1732e7045b3f0ea5 [
file
] [
edit
]
module
;
#include
<iostream>
// import declaration
export
module
hello_world
;
// module declaration
export
void
hello
()
{
// export declaration
std
::
cout
<<
"Hello world!\n"
;
}