Closed Anton-4 closed 2 months ago
dbg has a new capability, it can now "forward" its argument:
dbg
inc = \n -> dbg n + 1
We should tell people about this capability in the tutorial section on debugging.
More examples:
main = Stdout.line! "Hello $(dbg "world")!"
main = dbg (dbg 1 + 1)
1 |> dbg |> Num.add 2 |> dbg
dbg
has a new capability, it can now "forward" its argument:We should tell people about this capability in the tutorial section on debugging.
More examples: