mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
18 lines
188 B
R
18 lines
188 B
R
foo <- function(x) {
|
|
bar <- function(a, b, c) {
|
|
return(a + b + c)
|
|
}
|
|
return(
|
|
bar(
|
|
x,
|
|
1,
|
|
2
|
|
)
|
|
)
|
|
}
|
|
|
|
baz <- function(l) {
|
|
inner(l, function(x) {
|
|
|
|
})
|
|
}
|