7 lines
80 B
JavaScript
7 lines
80 B
JavaScript
/**
|
|
* Says hello!
|
|
*/
|
|
export function hello() {
|
|
console.log('hello world');
|
|
}
|