mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 18:50:03 +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)
|
||
|
}
|