testData/rename/renameLocalVariableInRmd.after.rmd (
16
lines of code) (
raw
):
```{r} ttt <- 10 my_function <- function(xxx, yyy, zzz) { ttt1 <- 10 print(ttt1) } ``` ```{python} ttt = 10 def ttt1(a): return a + ttt ``` ```{r} ttt <- 15 ttt + ttt ```