mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 22:40:05 +08:00
12 lines
207 B
Plaintext
12 lines
207 B
Plaintext
pub fn main() {
|
|
try x = Ok(1)
|
|
// <- keyword
|
|
// ^ variable
|
|
// ^ operator
|
|
// ^ type
|
|
// ^ punctuation.bracket
|
|
// ^ number
|
|
// ^ punctuation.bracket
|
|
Ok(x + 1)
|
|
}
|