![](source/plugin/imc_colorcode/images/loading.gif) - (defun c:gg()
- (setq lst '((10 20) (5 40) (10 30) (20 40) (10 40)))
- (setq newlst nil)
- (while
- (setq e(car lst))
- (setq newlst(cons e newlst))
- (setq lst(vl-remove-if '(lambda(x)(=(cadr x)(cadr e)))lst))
- )
- (setq newlst(reverse newlst))
- (princ newlst)
- (princ)
- )
|