561aa6891f
Big bang migration to Deno 🤯
8 lines
163 B
TypeScript
8 lines
163 B
TypeScript
import * as YAML from "https://deno.land/std/encoding/yaml.ts";
|
|
|
|
export function hello() {
|
|
console.log(YAML.stringify({ hello: "world" }));
|
|
|
|
return "hello";
|
|
}
|