编辑代码
Lisp代码
2.49.60
运行
(defun
sum-greater
(x
y
z)
(>
(+
x
y)
z))
(write
(sum-greater
1
4
3
)
)