ipso icon indicating copy to clipboard operation
ipso copied to clipboard

Pattern matching in `bind`

Open LightAndLight opened this issue 3 years ago • 0 comments

bind { a, b } <-
  comp
    bind line <- readln
    bind cond <- ...
    if cond
      then pure { a = ..., b = ... }
      else
        comp
          ...
          io.pure { a = ..., b = ... }

LightAndLight avatar Nov 25 '22 22:11 LightAndLight