Has anyone constructed a quine (\"A program that generates a copy of its own source text as its complete output\": http://www.nyx.net/~gthompso/quine.htm) in R? (The [quine] ta
This is the shortest I can come up with:
> "f" <- function() call("<-", "f", f) > f() "f" <- function () call("<-", "f", f)