import { memory: Memory<{ initial: 1 }> } from 'env';
export type GetAType = () => i32;
export type AType = { foobar: i32 };

export const a: i32 = 42;
export function getA(): i32 {
  return a;
}

export function hello(): i32 {
  const hello: i32 = "hello";
  return hello;
}
