mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-18 03:10:04 -04:00
19 lines
348 B
Gleam
19 lines
348 B
Gleam
|
|
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
|
||
|
|
}
|