मैंने इस सवाल पर एक 2 डी दृष्टिकोण करने का फैसला किया ... हां, 7 डी एसोलैंग्स हैं!
मैंने अतिरिक्त भाषाओं के लिए BlueEyedBeast के उत्तर (फू, गोल्फस्क्रिप्ट) द्वारा जोड़ने की प्रेरणा ली है
<ESC>
पलायन के लिए चरित्र शाब्दिक है ।
#>!>\'n\'r\'o\'c\,,,,,@'s'a'l'a'dJ,é'g'n+'i+'s+'s+'e+'r+'d+.ó[-]+[----->+++<]>.+++++++++++.+++[->+++<]>++.+[--->+<]>.+++H'turkey'~;oooooooo'sweettea.0-5++++++++fffffffff''`'
# >99*d1+c3-c89*4+dcc99*2+c!|$l9D3-O93++dOO8+O1+O1-O5+OO1+O95++O.
# >'p'()'u'()'m'()'p'()'k'()'i'()'n'()'p'()'i'()'e'()\
print'biscuits';'pecanpie'#"stuffing"R'c!'o!'r!'n!'b!'r!'e!'a!'d!*<ESC>ddddddSapplepie
Befunge-98
#?!> nothing important
'n push 'n'
STACK: [110]
\ swap top two stack values (TBH, I'm not really sure what happens in this case)
STACK: [110, 0]
'r\'o\'c\ repeat the same for other characters
STACK: [110 114 111 99 0]
,,,,, output the next 5 top stack values, "corn"
@ end program
rest of the code is irrelevant
since program has already stopped
इसे ऑनलाइन आज़माएं! आउटपुटcorn
> <>
आदेश वे दिखाई देते हैं
enter from the left, direction = right
# mirror, now the direction will change to left
and it wraps around and comes to the right
and reads code from the right to the left
'`' push this
' ... 5-0.aetteews' push this too
oooooooo outputs the top 5 characters of the stack
; end program
इसे ऑनलाइन आज़माएं! (कॉपी और पेस्ट केवल) आउटपुटsweettea
वी
...<ESC> writes stuff over three lines and enters normal mode
ddddddS deletes 3 lines, delete another line and enter insert mode
applepie writes "applepie"
इसे ऑनलाइन आज़माएं! आउटपुट applepie
(इसे चलाने में seconds20 सेकंड लग सकते हैं)
अजगर २
# first two lines are comments
print"biscuits"; # prints "biscuits" and ends statement
'pecanpie' # dangling (and ignored) string literal
इसे ऑनलाइन आज़माएं! (कॉपी और पेस्ट केवल) आउटपुटbiscuits
05AB1E
#>!> # does nothing important
\'n\ # push 'n' and delete it
'r\'o\'c\ # repeat for other characters
,,,,, # prints 5 times (since there is nothing in stack,
# prints nothing)
@ # push the index of the top of stack
's'a'l'a'd # push these characters
J, # join them and print them out
# the rest of the code does not matter
# since there is no implicit print
# because we used the print statement
इसे ऑनलाइन आज़माएं! आउटपुटsalad
गोल> <>
आदेश वे दिखाई देते हैं
enter from the left, direction = right
# mirror, now the direction changes to left
and it wraps around and comes to the right
and reads code from the right to the left
' starting parsing strings
` escape next character
' gets escaped
" stop string parsing
fffffffff pushes 15, 8 times
++++++++ adds up the numbers, resulting in 135
5- subtract 4 from it, 130
0 pushes 0
0 jumps to (130, 0)
#\'n\'r\'o\'c\,,,,,@'r'o'l'l'sJ, ... H'turkey'~;oooooooo"sweettea.0-5++++++++fffffffff""`"
^
we are here now
˜ removes value at top of stack, '"'
"yekrut" push this string
H Output stack as characters and halt program
इसे ऑनलाइन आज़माएं! आउटपुटturkey
फू
फू कुछ भी दोहरे उद्धरण चिह्नों में करता है, यही कारण है कि मैं अन्य भाषाओं में किसी भी दोहरे उद्धरण का उपयोग नहीं करने के लिए सावधान रहा हूं। चूंकि "stuffing"
यह दोहरे उद्धरण चिह्नों में है, इसलिए इसे मुद्रित किया जाएगा।
इसे ऑनलाइन आज़माएं! आउटपुट stuffing
और फिर एक त्रुटि है
हेडस्टैक (2015)
नए संस्करण के अमान्य होने के बाद से यह हेस्टैक के 2015 (2016 नहीं) दुभाषिया का उपयोग करता है। इसके लिए दुभाषिया है haystack.py
और नहीं haystack_new.py
आदेश वे दिखाई देते हैं
# ignored
\ reflection (now it moves downwards)
> set direction to right
99*d1+c Output 'R'
3-c Output 'O'
89*4+dcc Outputs 'L', newline, 'L'
99*2+c!| Outputs 'S' and ends the program
Note: '!' is ignored by the interpreter
यह प्रोग्राम आउटपुट करता है
R
O
L
L
S
और इस आउटपुट के बाद एक नई रूपरेखा (हे, व्हाट्सएप कोई फर्क नहीं पड़ता!)
GolfScript
first 2 lines are comments
print'biscuits'; pushes "biscuits" to the stack and discards it
'pecanpie' push this
#... comment
implicit output
इसे ऑनलाइन आज़माएं! आउटपुटpecanpie
बीएफ
मैंने टेक्स्ट को BF में बदलने के लिए https://copy.sh/brainfuck/text.html का उपयोग किया । हालाँकि बहुत सारे ,
इनपुट स्टेटमेंट हैं, लेकिन बीएफ कोड इससे स्वतंत्र है।
इसे ऑनलाइन आज़माएं! आउटपुटgravy
विखंडन
विखंडन कार्यक्रम शुरू करने के लिए, एक परमाणु को पैदा करना होगा। हम देखते हैं कि यह तीसरी पंक्ति है:
..."stuffing" Blah blah blah
R Spawns an atom with direction right
'c Gives the atom the mass of 'c''s ASCII value
! Print the atom's mass
'o!'r!'n!'b!'r!'e!'a!'d! Do the same for other characters
* Destroy atom, end program
इसे ऑनलाइन आज़माएं! आउटपुटcornbread
मंकोलंग v0.15
# Doesn't really do anything
\ Reflect, moves downwards
> Changes direction to right
... !| Does stuff in stack, '!' ignores the '|'
$l9D3 ... ++O Uses ASCII character codes to print "applecider"
. Ends program
इसे ऑनलाइन आज़माएं! आउटपुटapplecider
गंभीरता से
é - clear stack
'g'n+'i+'s+'s+'e+'r+'d+ - load chars onto stack
. - print stack
ó - exit
इसे ऑनलाइन आज़माएं! आउटपुटdressing
AXO
(कमांडों को उनके द्वारा दिए गए आदेश को दिखाया गया है)
#> blah blah
! rotate direction 90 degrees clockwise
> go right
'p'() push char and output
'u'() ... 'e'() repeat for other characters
\ end program
इसे ऑनलाइन आज़माएं! आउटपुटpumpkinpie