mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-21 07:29:53 +00:00
9 lines
151 B
C
9 lines
151 B
C
#include <emscripten.h>
|
|
#include <stdio.h>
|
|
|
|
// Compiled with: -O3 -g0
|
|
|
|
EMSCRIPTEN_KEEPALIVE
|
|
void run_sanity_check() {
|
|
printf("Hello, World!\n");
|
|
}
|