Outline
This assignment required you to log a "Hello, world" message to the console. Here's how you can do this in TypeScript or JavaScript:
// hello-world.ts
console.log('Hello, world!');
To run the script, you use the following command:
deno run hello-world.ts