# In the usual infix R syntax:
x <- sort(sample(1:10, 5, replace=TRUE))
for(i in x)
{
print(1:i)
}
#Equivalent:
schemeR::schemeR({
.(`<-`, x,
.(sort,
.(sample,
.(`:`, 1, 10),
5, replace=TRUE)))
.(`for`, i, x,
.(`{`,
.(print,
.(`:`, 1, i))))
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.