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