আমি এই প্রশ্নের জন্য একটি 2 ডি পন্থা করার সিদ্ধান্ত নিয়েছি ... হ্যাঁ, এখানে 2 2 ডি এসোলোং রয়েছে!
আমি ব্লু আইডবিস্টের উত্তর (ফু, গল্ফস্ক্রিপ্ট) দ্বারা অতিরিক্ত ভাষা যুক্ত করার জন্য অনুপ্রেরণা নিয়েছি
<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
(এটি চালাতে for20 সেকেন্ড সময় লাগতে পারে)
পাইথন 2
# 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
foo বিন্যাস
ফু ডাবল উদ্ধৃতিতে যে কোনও কিছু আউটপুট দেয়, সে কারণেই আমি অন্য ভাষাগুলিতে কোনও ডাবল উদ্ধৃতি ব্যবহার না করার বিষয়ে সাবধানতা অবলম্বন করেছি। যেহেতু "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