nvim-treesitter/tests/indent/r/pipe.R
2022-11-29 19:23:09 +01:00

10 lines
83 B
R

mtcars |>
head(
n = 6L
) |>
subset(
cyl > 3
)
mtcars %>%
head()