2024-09-21 22:58:46 +08:00

6 lines
89 B
JavaScript

let a = 1
export const main = ({b,c}) => {
console.log('current a', a);
return a++
}