mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-01-13 23:48:02 -05:00
10 lines
154 B
TypeScript
10 lines
154 B
TypeScript
// test_output! 3
|
|
|
|
export default function main() {
|
|
return foo({ a: 1, b: 2 });
|
|
}
|
|
|
|
function foo({ a, b }: { a: number, b: number }) {
|
|
return a + b;
|
|
}
|