উপাদান, 17 টি অক্ষর এবং 1 স্থান space
_'[_ 2:n;0>[n~+]]`
এটি আমার প্রথম নির্মিত ভাষা। এটি খুব কমপ্যাক্ট এবং মানব-পঠনযোগ্য হওয়ার জন্য ডিজাইন করা হয়েছে। সমস্ত নির্দেশাবলী একটি অক্ষর দীর্ঘ এবং একটি একক ফাংশন সঞ্চালন।
এলিমেন্টে মেমরি স্ট্রাকচার হিসাবে দুটি স্ট্যাক এবং একটি হ্যাশ রয়েছে। দুটি স্ট্যাককে প্রধান স্ট্যাক এবং নিয়ন্ত্রণ স্ট্যাক বলা হয়। মূল স্ট্যাকটি হ'ল পাটিগণিত, আই / ও, এবং হ্যাশ ম্যানিপুলেশন ঘটে। নিয়ন্ত্রণ স্ট্যাকটি যেখানে লজিক অপারেশনগুলি ঘটে এবং এই স্ট্যাকটি সময় এবং লুপগুলির জন্য নিয়ন্ত্রণ করে।
এলিমেন্টের পিছনে মূল ধারণাটি হ'ল একটি হ্যাশ রয়েছে যা নম্বর / স্ট্রিং সংরক্ষণ করে, যখন স্ট্যাকটি এই সংখ্যাগুলিতে গণনা করতে ব্যবহৃত হয়। এই গণনাগুলির ফলাফলগুলি ভবিষ্যতে ব্যবহারের জন্য হ্যাশের একটি নির্দিষ্ট জায়গা নির্ধারণ করতে পারে। হ্যাশের বিভিন্ন বিষয়বস্তুগুলিকে উপাদান বলা হয়, সুতরাং এটি একটি অ্যারের অনুরূপ তবে অ-সংখ্যাযুক্ত নাম থাকতে পারে।
সম্পাদনা: আপনি এখানে এলিমেন্ট (পার্ল লিখিত) জন্য একজন দোভাষী খুঁজে পেতে পারেন ।
অপারেটরগুলির তালিকা এখানে রয়েছে: এর মধ্যে কয়েকটি উদাহরণে, এম এবং এন ইতিমধ্যে স্ট্যাকের সংখ্যাগুলি উপস্থাপন করে।
text --pushes the string "text" onto the main stack
' --pops from main stack and pushes onto control stack
" --pops from control stack and pushes onto main stack
# --pops from main stack and destroys
[] --FOR statement (view the top number number from control stack and eval those many times)
{} --WHILE (loop until top number on control stack is 0)
( --pops from main stack, removes first character, pushes the remaining string onto stack, and pushes the removed character onto stack
) --pops from main stack, removes last character, pushes the remaining string onto stack, and pushes the removed character onto stack
~ --pops from main stack, pushes contents of the element with that name
+-*/%^ --pops two most recently named elements, adds/negates/multiplies/divides/modulates/exponentiates them, and places the result on the stack
mn; --pops m and n and assigns element n the value of m
mn@ --pops m and n and moves mth thing in stack to move to place n in stack
m$ --pops m and pushs size of m onto the stack
mn: --pops m and n and pushes m onto the stack n times
mn. --pops m and n and pushes m concatonated with n
m? --pops m and pushes 0 onto control stack if m is '0' or and empty string, else pushes 1
\ --escapes out of next character, so it isn't an operator and con be pushed onto the stack
><= --pops two numbers off of stack and tests, pushes 1 onto control stack if true and 0 if false
` --pops from main stack and prints
&| --pops two items from control stack, performs and/or respectively, and pushes result back onto control stack
! --pops a number off of control stack, pushes 1 if 0 or empty string, 0 otherwise
_ --inputs a word and pushes onto main stack
m, --pops m from main stack, coverts it to char and pushes, converts to num and pushes
Newlines and spaces separate different elements to be pushed onto the stack individually, but can pushed onto the stack using \
প্রোগ্রামটি কীভাবে কাজ করে তা এখানে একটি পদক্ষেপ:
_'[ --take the first line of input, transfer it to the control stack, and start a for loop
_ 2: --take one more line of input, and duplicate it so that there are two copies
n; --take one copy and put into element n
0> --push a zero onto the stack, remove the zero and the other copy of the input, and compare. A 1 will be placed on the control stack if the input was greater than zero, a 0 otherwise.
[ --starts another for loop if the comparison was true. This loop will be repeated once if the comparison was true and no times if it was false, so it is the same as an IF statement.
n~ --pushes n onto the main stack, then pops it ans replaces it with the contents of n, which is the number stored earlier
+ --takes the number and adds it to the running total, which is contained as the last item on the stack
] --ends the inner for loop
] --ends the outer for loop
` --print the top item (also the only item) on the stack to output