diff --git a/README.md b/README.md index 260bc27..8a541ca 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ I have three policies: Languages --- -Quine is implemented in 313 programming languages! +Quine is implemented in 314 programming languages!
List of Languages @@ -334,6 +334,7 @@ Quine is implemented in 313 programming languages! - [YSH](https://www.oilshell.org/release/latest/doc/ysh-tour.html) - [Nushell](https://www.nushell.sh) - [DuckScript](https://sagiegurari.github.io/duckscript/) + - [Erg](https://github.com/erg-lang/erg)
diff --git a/quine.er b/quine.er new file mode 100644 index 0000000..aea6a94 --- /dev/null +++ b/quine.er @@ -0,0 +1,3 @@ +s = """s = ""{0:c}{1}{0:c}"" +print! s.format(34, s)""" +print! s.format(34, s)