nvim-treesitter/tests/indent/r/func.R
2022-01-29 15:25:56 +01:00

12 lines
133 B
R

foo <- function(x) {
bar <- function(a, b, c) {
return(a + b + c)
}
return(
bar(
x,
1,
2
)
)
}