summaryrefslogtreecommitdiff
path: root/tests/query/highlights/gleam/pipe.gleam
blob: 33f27312bcf4c8f1d7c048f671060e2a9697310d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub fn run() {
  1
  // <- number
  |> add(_, 2)
  // <- operator
  // ^ function
  //    ^ punctuation.bracket
  //     ^ comment
  //      ^ punctuation.delimiter
  //        ^ number
  //         ^ punctuation.bracket
  |> add(3)
  // <- operator
  // ^ function
  //    ^ punctuation.bracket
  //     ^ number
  //      ^ punctuation.bracket
}