1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 18:50:03 +08:00
SpaceVim/bundle/nvim-treesitter/tests/query/highlights/gleam/try.gleam

12 lines
207 B
Plaintext
Raw Normal View History

pub fn main() {
try x = Ok(1)
// <- keyword
// ^ variable
// ^ operator
// ^ type
// ^ punctuation.bracket
// ^ number
// ^ punctuation.bracket
Ok(x + 1)
}