CJam 0.6.6 dev / GolfScript, 15 14 12 바이트
"0$p"0$~a:n;
2 바이트를 골라내는 @ jimmy23013에게 감사드립니다!
나머지는 업데이트됩니다.
확인
제출에는 상당한 공백이 포함되므로 16 진 덤프를 비교하는 것이 가장 좋습니다.
$ xxd -g 1 mpquine
0000000: 22 60 30 24 7e 22 30 24 7e 4e 4d 3a 6e 3b "`0$~"0$~NM:n;
$
$ cjam mpquine | tee quine.gs | xxd -g 1
0000000: 22 60 30 24 7e 22 60 30 24 7e 0a "`0$~"`0$~.
$ golfscript quine.gs | xxd -g 1
0000000: 22 60 30 24 7e 22 60 30 24 7e 0a "`0$~"`0$~.
$ cjam quine.gs | xxd -g 1
0000000: 22 60 30 24 7e 22 60 30 24 7e "`0$~"`0$~
$
$ golfscript mpquine | tee quine.cjam | xxd -g 1
0000000: 22 60 30 24 7e 22 60 30 24 7e "`0$~"`0$~
$ cjam quine.cjam | xxd -g 1
0000000: 22 60 30 24 7e 22 60 30 24 7e "`0$~"`0$~
$ golfscript quine.cjam | xxd -g 1
0000000: 22 60 30 24 7e 22 60 30 24 7e 0a "`0$~"`0$~.
CJam
CJam 인쇄 "`0$~"0$~
및 후행 줄 바꿈. 온라인으로 사용해보십시오!
생성 된 프로그램 "`0$~"0$~
은 GolfScript의 마지막 줄 바꿈 ( 온라인 시도! )으로 인쇄되지만 CJam의 줄 바꿈 ( 온라인 시도! )없이 인쇄됩니다.
메타 퀸의 작동 방식
"`0$~" e# Push that string on the stack.
0$~ e# Push a copy and evaluate it:
e# ` Inspect the string, pushing "\"`0$~\"".
e# 0$ Push a copy.
e# ~ Evaluate, pushing "`0$~".
e# Both "\"`0$~\"" and "`0$~" are now on the stack.
NM e# Push "\n" and "".
:n; e# Map print over the elements of "" (none) and pop the result.
e# "\"`0$~\"", "`0$~", and "\n" are now on the stack, and the
e# characters they represent will be printed implicitly.
quine의 작동 원리
"`0$~" # Push that string on the stack.
0$~ # As in CJam.
<LF> # Does nothing.
# "\"`0$~\"" and "`0$~" are now on the stack, and the characters
# they represent will be printed implicitly, plus a linefeed.
GolfScript와 달리 CJam은 기본적으로 후행 줄 바꿈을 인쇄하지 않으므로 CJam에서 quine이 아닙니다.
GolfScript
"`0$~"0$~
후행 공백없이 GolfScript가 인쇄합니다 . 온라인으로 사용해보십시오!
생성 된 프로그램 "`0$~"0$~
은 CJam에서 공백을 남기지 않고 인쇄 하지만 ( 온라인 시도! ) GolfScript는 줄 바꿈을 추가합니다 ( 온라인 시도! ).
메타 퀸의 작동 방식
"`0$~"0$~ # As in CJam.
NM # Unrecognized token. Does nothing.
:n # Store the top of the stack – "`0$~" – in the variable n. n holds
# "\n" by default. When the program finishes, the interpreter
# prints n implicitly, usually resulting in a trailing linefeed.
# By redefining n, it will print "0$~" instead.
; # Pop the string from the stack so it won't be printed twice.
quine의 작동 원리
"`0$~"0$~ e# Works as in GolfScript.
CJam과 달리 GolfScript는 스택 내용에 줄 바꿈을 추가하므로 GolfScript의 퀴엔은 아닙니다.