blob: b352c5e6e2fed7247c38c1e4d2a2e54d513b2d8a [file] [log] [blame] [edit]
#include <emscripten.h>
int main() {
volatile double d = 17179870521;
EM_ASM_({
Module.print('|' + $0 + '|')
}, int(d));
}