blob: dbefa3333c3565eb419ffb417b4ed157ee98b397 [file] [edit]
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <emscripten.h>
int main() {
srand(time(NULL));
printf("hello: a random string: %s, an integer: %d, a float: %f. Time now: %f\n",
emscripten_random() > 0.5 ? "test" : "test2",
rand(),
emscripten_random(),
emscripten_get_now());
}