mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-04 04:20:09 -04:00
11 lines
222 B
Gleam
11 lines
222 B
Gleam
pub fn main() {
|
|
try x = Ok(1)
|
|
// <- exception
|
|
// ^ variable
|
|
// ^ operator
|
|
// ^^ constant.builtin
|
|
// ^ punctuation.bracket
|
|
// ^ number
|
|
// ^ punctuation.bracket
|
|
Ok(x + 1)
|
|
}
|