diff options
author | Jeffrey B. Arnold <jeffrey.arnold@gmail.com> | 2012-08-11 14:24:13 -0400 |
---|---|---|
committer | Jeffrey B. Arnold <jeffrey.arnold@gmail.com> | 2012-08-11 14:24:13 -0400 |
commit | 474f5910bc5312a59da0e4f55252969fe5906fce (patch) | |
tree | 78b84e059afc620af405ad13f0c15d906cea015b /tests/examplefiles/test.R | |
parent | 6d4d1c6f1d4e05ee01defc00d715633fcc074329 (diff) | |
download | pygments-474f5910bc5312a59da0e4f55252969fe5906fce.tar.gz |
minor additions to test.R
Diffstat (limited to 'tests/examplefiles/test.R')
-rw-r--r-- | tests/examplefiles/test.R | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/examplefiles/test.R b/tests/examplefiles/test.R index 13cc2a70..54325339 100644 --- a/tests/examplefiles/test.R +++ b/tests/examplefiles/test.R @@ -130,9 +130,12 @@ TRUE && FALSE TRUE | FALSE TRUE || FALSE foo <- 2 + 2 +foo = 2 + 2 2 + 2 -> foo foo <<- 2 + 2 2 + 2 ->> foo +base:::sum +base::sum ## Strings foo <- "hello, world!" |