1
0
silverbullet/plugos/test_func.test.ts
Zef Hemel 561aa6891f
Migrate to Deno (#86)
Big bang migration to Deno 🤯
2022-10-10 14:50:21 +02:00

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";
}