RosettaCodeData/Task/Scope-modifiers/R/scope-modifiers-1.r

8 lines
170 B
R
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
X <- "global x"
f <- function() {
x <- "local x"
print(x) #"local x"
}
f() #prints "local x"
print(x) #prints "global x"