Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
titlehelloWorld.ts
export default function helloWorld() {
?? console.log('Hello world!');
}


Code Block
languagejs
titleindex.ts
import helloWorld from 'helloWorld';
export default??{ helloWorld };