pineapple-notepad/3rdparty/lexilla532/lexilla/test/examples/r/102Backticks.r

11 lines
179 B
R
Raw Normal View History

2024-07-02 23:47:26 +08:00
# ugly code to demonstrate multiline string.
`Hello
World` <- function(x, y, z) {
print(x);
print(y);
print(z);
}
`Hello\nWorld`("Hello\nMoon!", "Hello
Venus", 'Hello\
Mars');