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

13 lines
133 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
)
)
}