mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 03:26:52 -04:00
12 lines
133 B
R
12 lines
133 B
R
foo <- function(x) {
|
|
bar <- function(a, b, c) {
|
|
return(a + b + c)
|
|
}
|
|
return(
|
|
bar(
|
|
x,
|
|
1,
|
|
2
|
|
)
|
|
)
|
|
}
|