Merge commit 'be3e8236086165e5e45a5a10783823874b3f3ebd' as 'lib/vscode'
This commit is contained in:
24
lib/vscode/extensions/r/test/colorize-fixtures/test.r
Normal file
24
lib/vscode/extensions/r/test/colorize-fixtures/test.r
Normal file
@ -0,0 +1,24 @@
|
||||
# © Microsoft. All rights reserved.
|
||||
|
||||
#' Add together two numbers.
|
||||
#'
|
||||
#' @param x A number.
|
||||
#' @param y A number.
|
||||
#' @return The sum of \code{x} and \code{y}.
|
||||
#' @examples
|
||||
#' add(1, 1)
|
||||
#' add(10, 1)
|
||||
add <- function(x, y) {
|
||||
x + y
|
||||
}
|
||||
|
||||
add(1, -2, 2.0)
|
||||
add(1.0e10, 2.0e10)
|
||||
|
||||
paste("one", NULL)
|
||||
paste(NA, 'two')
|
||||
|
||||
paste("multi-
|
||||
line",
|
||||
'multi-
|
||||
line')
|
1047
lib/vscode/extensions/r/test/colorize-results/test_r.json
Normal file
1047
lib/vscode/extensions/r/test/colorize-results/test_r.json
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user