3
পরিবর্তনশীল নামের আগে একক উদ্ধৃতি কখন এবং কখন ব্যবহার করবেন না তা কীভাবে জানবেন?
আমার নীচে আছে: (setq some-variable "less") কেন আমি একক উক্তিটি ব্যবহার করতে চাইছি boundpতা দিয়ে নয় তবে আমি বিভ্রান্ত bound-and-true-p। উদাহরণ 1: (when (boundp 'some-variable) (message "some-variable is %s" some-variable)) ফলাফল: "কিছু পরিবর্তনশীল কম" উদাহরণ 2a: (when (bound-and-true-p some-variable) ;; Note that using single-quote causes error (message "some-variable is %s" …