Skip to content

Instantly share code, notes, and snippets.

@juster
Created October 28, 2020 03:40
Show Gist options
  • Save juster/e81887f1df7dffcb17b21b7681030b13 to your computer and use it in GitHub Desktop.
Save juster/e81887f1df7dffcb17b21b7681030b13 to your computer and use it in GitHub Desktop.
Erlang quine
-module(quine).
-export([run/0]).
run() -> io:format(q(), [q()]).
q() -> "-module(quine).
-export([run/0]).
run() -> io:format(q(), [q()]).
q() -> ~p.~n".
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment