# Just a little plot to get you started, feel free to delete! :)
n <- 100 # Number of points
turns <- 8 # How many rotations does the spiral make?
t <- seq(0, turns*pi, length.out = n)
x <- t * cos(t)
y <- t * sin(t)
# - col: The color, e.g. "red", "blue", "green", or "#FF00FF"
# - pch: The plotting symbol, say 1, 2, "*", or "S"
# - cex: The size, e.g. 0.5 (smaller), 2 (bigger)
plot(x, y, col="purple", pch=1, cex=2, main="A colorful spiral")
_webr_editor_1 = Object {code: null, options: Object, indicator: it}