Created
November 8, 2015 09:00
-
-
Save mame/a286da6f25d0ba26691c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
eval x=%q; | |
# A quine for Burn | |
# See github.com/remore/burn | |
scene 'quine' do | |
i=0 | |
a='eval x=%q'<<59<<x<<59 | |
b=a.lines | |
a.lines do | |
c = b.shift | |
label c.chomp, 1, i+=1 | |
end | |
end | |
; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment