RosettaCodeData/Task/Runtime-evaluation/R/runtime-evaluation-1.r

4 lines
122 B
R
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
expr1 <- quote(a+b*c)
expr2 <- parse(text="a+b*c")[[1]]
expr3 <- call("+", quote(`a`), call("*", quote(`b`), quote(`c`)))