1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-03-13 10:15:41 +08:00
2022-04-14 12:01:23 +08:00

12 lines
207 B
Gleam

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