Skip to main content
Deno 2 is finally here 🎉️
Learn more

Deno Hello World

This is a simple Deno module that returns “Hello, world!”.

Usage

Import the module and use the function:

import { sayHello } from "https://deno.land/x/deno_hello_world/hello.ts";

console.log(sayHello());