mirror of
https://github.com/obra/superpowers.git
synced 2026-06-09 17:02:07 +00:00
8 lines
99 B
JavaScript
8 lines
99 B
JavaScript
|
|
const { greet } = require('./utils');
|
||
|
|
|
||
|
|
function main() {
|
||
|
|
console.log(greet('world'));
|
||
|
|
}
|
||
|
|
|
||
|
|
main();
|