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