panorama/apps/journal/assembly/index.ts

6 lines
108 B
TypeScript
Raw Normal View History

2024-06-21 20:43:19 +00:00
// The entry file of your WebAssembly module.
export function add(a: i32, b: i32): i32 {
return a + b;
}