mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-28 10:37:17 +02:00
10 lines
151 B
C
10 lines
151 B
C
#include <emscripten.h>
|
|
#include <stdio.h>
|
|
|
|
// Compiled with: -O3 -g0
|
|
|
|
EMSCRIPTEN_KEEPALIVE
|
|
void run_sanity_check() {
|
|
printf("Hello, World!\n");
|
|
}
|