blob: b79f8ac596c161186f23e9af8329afc68e352153 [file] [log] [blame]
/**
* @license
* Copyright 2013 The Emscripten Authors
* SPDX-License-Identifier: MIT
*
* Simple test JS program used by `test/jsrun.py` to verify that a JS engine
* is working.
*/
'use strict';
if (typeof print === 'undefined') {
global.print = console.log
}
print('hello, world!');