Skip to content

Commit a5466a7

Browse files
committed
remove accidental code
1 parent 058f097 commit a5466a7

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed
Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
1-
function fib(n) {
2-
if (n <= 1) return n
3-
return fib(n - 1) + fib(n - 2)
4-
}
5-
61
async function main() {
72
await $`Ultimate answer is to the life, universe and everything is `
83
await gen({ regex: /\d\d/ })
9-
console.log(`fib(10) = ${fib(30)}`)
10-
await gen({ regex: / [A-Z].*/ })
114
}
125

136
start(main)

0 commit comments

Comments
 (0)