mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-06 13:30:01 -04:00
11 lines
207 B
Gleam
11 lines
207 B
Gleam
pub fn main() {
|
|
try x = Ok(1)
|
|
// <- keyword
|
|
// ^ variable
|
|
// ^ operator
|
|
// ^ type
|
|
// ^ punctuation.bracket
|
|
// ^ number
|
|
// ^ punctuation.bracket
|
|
Ok(x + 1)
|
|
}
|