(function () {
alert( '1' ) // line comment after statement
/*
BLOCK COMMENT
*/
alert( '2' );
// standalone comment
})();
export default 42;