nvim-treesitter/tests/indent/r/func.R

19 lines
188 B
R
Raw Normal View History

2022-01-28 19:21:50 -03:00
foo <- function(x) {
bar <- function(a, b, c) {
return(a + b + c)
}
return(
bar(
x,
1,
2
)
)
}
2022-03-28 16:08:30 -03:00
baz <- function(l) {
inner(l, function(x) {
})
}