```{r}
ttt <- 10
my_function <- function(xxx, yyy, zzz) {
   ttt <- 10
   print(ttt<caret>)
}
```

```{python}
ttt = 10
def ttt1(a):
    return a + ttt
```

```{r}
ttt <- 15
ttt + ttt
```