Closed cyrus- closed 3 months ago
skipping right to the end even with the filters
code:
let fac : Int -> Int = fun n -> if n == 0 then 1 else n * fac(n-1) in pause fac($v) in fac(5)```
skipping right to the end even with the filters