Files
2017-06-27 21:59:40 +10:00

11 lines
153 B
JavaScript

// export function test(){
// return 'aaaa';
// }
function cube(x) {
return x * x * x;
}
const foo = Math.PI + Math.SQRT2;
export { cube, foo };