summaryrefslogtreecommitdiff
path: root/testdata/accept/reduce03.lc
blob: 6ec1aa08f36b9928faca96eef76c3c6aaf8379cf (plain)
1
2
3
4
5
6
7
data AB = A | B

image ab = case ab of
  A -> colorImage1 (V4 0.0 0.0 0.4 1.0)
  B -> colorImage1 (V4 0.4 0.0 0.0 1.0)

main = ScreenOut (FrameBuffer (image A))