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