Skip to content

Latest commit

 

History

History

hello-world

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

hello-world

The hello-world example exposes a single function named hello. It is identical to the following TypeScript example:

function hello(): string {
    return "hello";
}

Usage

const { hello } = require(".");

console.log(hello());