Skip to content

Commit

Permalink
remove accidental code
Browse files Browse the repository at this point in the history
  • Loading branch information
mmoskal committed Apr 29, 2024
1 parent 058f097 commit a5466a7
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions controllers/jsctrl/samples/hello.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
function fib(n) {
if (n <= 1) return n
return fib(n - 1) + fib(n - 2)
}

async function main() {
await $`Ultimate answer is to the life, universe and everything is `
await gen({ regex: /\d\d/ })
console.log(`fib(10) = ${fib(30)}`)
await gen({ regex: / [A-Z].*/ })
}

start(main)

0 comments on commit a5466a7

Please sign in to comment.