4P.a+80pa2*&wdt,kd&w74*,.ok@
Спробуйте в Інтернеті!
Недрукований символ - 0x18.
Пояснення
Проблема зі звичайними "
функціями Fungeoid quines полягає в тому, що якщо ми повторимо весь вихідний код, то ми також отримаємо додаткові, "
і рядок більше не охоплює весь вихідний код. Я припускаю, що тому існуюча відповідь використовує g
натомість чіт-у підхід.
У цій відповіді використовується "
підхід на основі бази даних, але замість того, щоб включати "
в джерело, ми записуємо його в програму під час виконання. Таким чином, він буде колись один, "
незалежно від того, як часто програма повторюється (адже ми записуємо її лише до однієї конкретної координати, незалежно від розміру програми).
Загальна ідея полягає в тому, що ми створюємо представлення всього вихідного коду на стеці, але проходимо лише перших 29 символів (тобто довжину програми), довжина циклу визначається розміром коду. Тому ми можемо насправді додати довільні символи (крім рядків каналів) після, @
і результатом завжди буде циклічне повторення основної програми, на один символ довше вихідного.
4P Push 4! = 24. This is the code point of the unprintable, which we're
using as a placeholder for the quote.
.a+ Duplicate it and add 10, to get 34 = '"'.
80p Write '"' to cell (8,0), i.e. where the first unprintable is.
Placeholder, becomes " by the time we get here, and pushes the code
points of the entire program to the stack. However, since we're already
a good bit into the program, the order will be messed up: the bottom
of the stack starts at the 24 (the unprintable) followed by all
characters after it (including those from extraneous repetitions). Then
on top we have the characters that come in front of the `"`.
So if the initial program has structure AB, then any valid program has
the form ABC (where C is a cyclic repetition of the initial program),
and the stack ends up holding BCA. We don't care about C, except to
determine how big the program is. So the first thing we need to do is
bring B to the top, so that we've got the initial program on top of
the stack:
a2* Push 10*2 = 20.
&w Run the following section 21 times, which is the length of B.
dt, Pull up the value at the bottom of the stack.
k End of loop.
d&w Run the following section D+1 times, where D is the length of ABC.
74* Push 28, one less than the number of characters in AB.
, Pull up the 29th stack element, which is the next character to print.
.o Print a copy of that character.
k End of loop.
@ Terminate the program.