An open API service indexing awesome lists of open source software.

https://github.com/anishkny/deno-hello

The simplest possible Deno module
https://github.com/anishkny/deno-hello

deno deno-module denoland hello-world

Last synced: 1 day ago
JSON representation

The simplest possible Deno module

Awesome Lists containing this project

README

          

# hello

Prints out `hello, world!`.

## Usage

```ts
import hello from "https://deno.land/x/hello/mod.ts";

hello();

// Output: hello, world!
```