packages feed

haskell-tools-builtin-refactorings-1.0.0.0: examples/Expr/Case.hs

module Expr.Case where

x = 12

a = case x of 1 -> 0
              _ -> 1

b = case x of { 1 -> 0; _ -> 1 }