
- (defun c:aaa ()
- (setq aaa '(x1 x2 x3 x4))
- (setq bbb '(y1 y2 y3 y4))
- (setq ccc '(z1 z2 z3 z4))
- (setq n (length aaa)
- m 0
- lst '()
- )
- (while (/= n m)
- (setq lst1 (list (nth m aaa) (nth m bbb) (nth m ccc)))
- (setq lst (cons lst1 lst))
- (setq m (1+ m))
- )
- (reverse lst)
- )
|