mirror of
https://github.com/cerc-io/watcher-ts
synced 2024-11-20 12:56:20 +00:00
6 lines
109 B
TypeScript
6 lines
109 B
TypeScript
|
// The entry file of your WebAssembly module.
|
||
|
|
||
|
export function add (a: i32, b: i32): i32 {
|
||
|
return a + b;
|
||
|
}
|