Quarto can be used with R

Please note that this relies on having R installed on your computer.

First a Julia codeblock that imports the RCall package:

import Pkg; Pkg.add("RCall")  # run this line if RCall.jl not installed
import RCall

An example R code block

x <- c(3, 5, -1)
x^2
3-element Vector{Float64}:
  9.0
 25.0
  1.0