silverbullet/packages/plugos/test_func.test.ts

8 lines
163 B
TypeScript
Raw Normal View History

2022-10-04 22:33:29 +08:00
import * as YAML from "https://deno.land/std/encoding/yaml.ts";
export function hello() {
console.log(YAML.stringify({ hello: "world" }));
return "hello";
}