Vitsy, 10 27 바이트
'rddd++&"rdd8++a[v}v1-D);].
:
허용 된 경우 이를 11 바이트로 줄일 수 있습니다. :(
설명:
'rddd++&"rdd8++a[v}v1-D);].
' Capture all instructions as a string until encountering
' again, looping if necessary.
r Reverse the current stack (output is top-down).
ddd++ Push char literal ' to the stack.
& Push a new stack to the stack stack.
" Same as ', but " specific.
r Reverse the current stack.
dd8++ Push char literal " to the stack.
a Push 10 to the stack.
[ ] Loop forever.
v Capture the top value as a variable.
} Take the bottom item of the stack and put it on the top.
v Dump the variable to the stack.
1- Subtract 1.
D Duplicate the top item.
); Pop n; if n is 0, exit the loop.
a[v v1-D);] This is a makeshift for loop with 10 iterations.
. Pop the top stack as n, and the second stack as o.
Write a file called "n" with the contents of "o".
두 스택은 끝에서 동일합니다. 일부 Java 버전에서는 클래스의 FileNotFoundException
구현이 다르기 때문에이 문제가 발생할 수 있습니다 FileInputStream
.
편집 전의 이전 답변 :
&'rddd++}.
설명:
& Push a new stack to the stack stack.
'rddd++ Modified standard quine.
} Move the ' to the right place.
. Pop the top stack as n, and the second stack as o. Write a file called
"n" with the contents of "o". (Quine name, no content)
내가 할 수도 있기 때문에 스택 내에서 발생하는 단계의 다이어그램이 있습니다 (각 스택은로 []
표시됨).
Initial state: [[]]
& [[], []]
Push a new stack to the stack stack.
' [[], ["r", "d", "d", "d", "+", "+", "}", ".", "&"]]
This stack state occurs because ' will loop around the line
until finding the next '.
r [[], ["&", ".", "}", "+", "+", "d", "d", "d", "r"]]
Reverses the top (last) stack.
ddd [[], ["&", ".", "}", "+", "+", "d", "d", "d", "r", 13, 13, 13]
Push thirteen thrice.
++ [[], ["&", ".", "}", "+", "+", "d", "d", "d", "r", "'"]
Because char ' is 39 = 13 + 13 + 13.
} [[], [".", "}", "+", "+", "d", "d", "d", "r", "'", "&"]]
Takes the bottom item, then puts it on the top.
. []
Writes a file with content from the second-to-top stack and the
name as the concatenation of all elements in the top stack,
with top member priority (backwards from my representation).
실제로 이것이 어떻게 작동하는지 잘 모르겠습니다. 미세한 변경으로 인해이 문제가 발생합니다. 예를 들어, &
다른 여러 위치에 배치하면 잘 작동하지만 배치 위치 에 따라 ClassCastException
s, IOException
s 및 ArrayOutOfBoundsException
s가 발생합니다. 몇 가지 버그 수정이 필요할 수 있습니다.