1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 22:40:05 +08:00
SpaceVim/bundle/nvim-treesitter/tests/query/highlights/gleam/try.gleam
2022-04-14 12:01:23 +08:00

12 lines
207 B
Plaintext

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