1
0
silverbullet/plugos/test_func.test.ts

8 lines
166 B
TypeScript
Raw Normal View History

2023-04-19 08:46:20 +00:00
import * as YAML from "https://deno.land/std@0.184.0/yaml/mod.ts";
export function hello() {
console.log(YAML.stringify({ hello: "world" }));
return "hello";
}