Sign in
chromium
/
external
/
github.com
/
kripken
/
emscripten
/
refs/heads/splitbrowser
/
.
/
tests
/
minimal_hello.c
blob: 62160142f380c4d9738b1a898c84cfdb9db3b537 [
file
] [
edit
]
#include
<emscripten.h>
EM_JS
(
void
,
console_log
,
(
char
*
str
),
{
console
.
log
(
UTF8ToString
(
str
));
});
int
main
()
{
console_log
(
"minimal hello!"
);
return
0
;
}