Nothing
if (!dir.exists("data")) {
dir.create("data")
}
.in <- suppressWarnings(readLines("src/Makevars.in"))
if (.Platform$OS.type == "windows") {
.makevars <- file("src/Makevars.win", "wb")
.i <- "I"
} else {
.makevars <- file("src/Makevars", "wb")
if (any(grepl("Pop!_OS", utils::osVersion, fixed=TRUE))) {
.i <- "isystem"
} else {
.i <- "I"
}
}
writeLines(gsub("@ISYSTEM@", .i, .in),
.makevars)
close(.makevars)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.