blob: f87a9ed7e9e433914f83e89345f3b219831069e1 [file]
/**
* @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!');