mirror of
https://github.com/voltrevo/ValueScript.git
synced 2026-04-18 03:00:27 -04:00
10 lines
137 B
TypeScript
10 lines
137 B
TypeScript
//! test_output(3)
|
|
|
|
export default function main() {
|
|
return foo([1, 2]);
|
|
}
|
|
|
|
function foo([a, b]: [number, number]) {
|
|
return a + b;
|
|
}
|