summaryrefslogtreecommitdiff
path: root/testdata/language-features/basic-values/let01.lc
blob: 7559fdd438cc2b9c4b4add53f4b4ce9eb4ab4346 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
value1 = let x = 1 in 1

value2 =
  let x = 1
  in 1

value3 =
  let x = 1
      y = 'c'
  in 1

value4 = let x = 1
         in 1

value5 = let x = 1
             y = 2
         in 1