blob: 95f7be9aa583fb60d11bf8f1ce09babd088f7f79 [file] [log] [blame]
/**
* @license
* Copyright 2023 The Go Authors. All rights reserved.
* Use of this source code is governed by a BSD-style
* license that can be found in the LICENSE file.
*/
const hello = (target) => console.log(`Hello, ${target}!`);
hello("world");
export {};