mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-05 04:50:03 -04:00
18 lines
362 B
Gleam
18 lines
362 B
Gleam
pub fn run() {
|
|
1
|
|
// <- number
|
|
|> add(_, 2)
|
|
// <- operator
|
|
// ^^^ function.call
|
|
// ^ punctuation.bracket
|
|
// ^ comment
|
|
// ^ punctuation.delimiter
|
|
// ^ number
|
|
// ^ punctuation.bracket
|
|
|> add(3)
|
|
// <- operator
|
|
// ^^^ function.call
|
|
// ^ punctuation.bracket
|
|
// ^ number
|
|
// ^ punctuation.bracket
|
|
}
|