我目前正在上课学习elisp,所以我没有这门语言的经验。我试图以交互方式读取两个输入(矩形的宽度和长度),然后使用它们调用一个函数来计算矩形的面积。我的代码如下:
(defun rectangle_Area(w l)
"Compute the area of a rectangle, given its width and length interactively."
(interactive "nWidth: ")
(interactive "nLength: ")
(setq area (rectangleArea w l))
(message "The rectangle's area is %f." area))
目前我收到错误数量的参数错误。就像我说的,我以前没有经验......我真正需要知道的是如何使用交互式存储/读取两个单独的值。
感谢您的任何帮助