Bye Bye Moore

PoCソルジャーな零細事業主が作業メモを残すブログ

uLispのapply関数の中で">"や"<"を使うと……???

apply function
Syntax: (apply function list)

Returns the result of evaluating the function specified by the first argument with the list of arguments specified by the second parameter.

実際のところ

(apply > '(0) )
; t

(apply > '(1) )
; t

(apply > '(2 1) )
; t