hazelgrove / hazel

Hazel, a live functional programming environment with typed holes
http://hazel.org/
MIT License
807 stars 52 forks source link

evaluation filters no longer working #1358

Closed cyrus- closed 3 months ago

cyrus- commented 3 months ago

image

skipping right to the end even with the filters

Negabinary commented 3 months ago

code:


let fac : Int -> Int =
  fun n -> if n == 0 then 1 else n * fac(n-1) 
in
pause fac($v) in
fac(5)```