mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-09 15:00:04 -04:00
14 lines
369 B
Gleam
14 lines
369 B
Gleam
|
|
pub fn main() {
|
||
|
|
assert Ok(i) = parse_int("123")
|
||
|
|
// <- exception
|
||
|
|
// ^ type
|
||
|
|
// ^ punctuation.bracket
|
||
|
|
// ^ variable
|
||
|
|
// ^ punctuation.bracket
|
||
|
|
// ^ operator
|
||
|
|
// ^ function
|
||
|
|
// ^ punctuation.bracket
|
||
|
|
// ^ string
|
||
|
|
// ^ punctuation.bracket
|
||
|
|
}
|