Get your own website Result Size: 625 x 565
x
 
txt <- "global variable"
my_function <- function() {
  txt = "fantastic"
  paste("R is", txt)
}
my_function()
txt # print txt
[1] "R is fantastic"
[1] "global variable"