gilbert189 — 11/19/2023, 1:16:58 PM
select x p q
  | True = p
  | False = q

main = putStr (select (1 == 1) "yes" "no")
♥ 2 ↩ 0 💬 1 comment

comments

pkmnq:

golfed:

select _ p _ = p
11/19/2023, 3:47:01 PM