2
পসিক্স শেলগুলিতে ফাংশন এবং ভেরিয়েবলের জন্য নেমস্পেসগুলি পৃথক করুন
ড্যাশগুলিতে, ফাংশন এবং ভেরিয়েবলগুলি পৃথক নেমস্পেসে বাস করতে প্রদর্শিত হয়: fn(){ fn="hello world" } fn; echo "The value is $fn!" #prints: The value is hello world! fn; echo "The value is $fn!" #prints: The value is hello world! #the fn variable doesn't conflict with the fn function এটি কোনও ড্যাশ-নির্দিষ্ট …