mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 22:40:05 +08:00
19 lines
348 B
Plaintext
19 lines
348 B
Plaintext
pub fn run() {
|
|
1
|
|
// <- number
|
|
|> add(_, 2)
|
|
// <- operator
|
|
// ^ function
|
|
// ^ punctuation.bracket
|
|
// ^ comment
|
|
// ^ punctuation.delimiter
|
|
// ^ number
|
|
// ^ punctuation.bracket
|
|
|> add(3)
|
|
// <- operator
|
|
// ^ function
|
|
// ^ punctuation.bracket
|
|
// ^ number
|
|
// ^ punctuation.bracket
|
|
}
|