// import * as YAML from "js-yaml";

export async function hello() {
  // @ts-ignore: syscall is a global function
  const numbers = await syscall("addNumbers", 1, 2);
  return {
    jsonMessage: JSON.stringify({ hello: "world" }),
    addedNumbers: numbers,
  };
}