我从我的程序中摘一部分出来,你看看能有所启发不:- (setq listb '("0.35" "0.5" "0.7" "1" "1.4" "2" "2.8")
- listh '("2.5" "3.5" "5" "7" "10" "14" "20")
- listd '("0.25" "0.35" "0.5" "0.7" "1" "1.4" "2")
- listH1 '("3.5" "5" "7" "10" "14" "20" "28")
- listH2 '("8" "11" "15" "21" "30" "42" "60")
- listval '("0.006" "0.012" "0.025" "0.05" "0.1" "0.2"
- "0.4" "0.8" "1.6" "3.2" "6.3" "12.5"
- "25" "50"
- )
- )
- (addlist "b" listb)
- (addlist "h" listh)
- (addlist "d" listd)
- (addlist "H1" listH1)
- (addlist "H2" listH2)
- (addlist "val" listval) (action_tile
- "b"
- "(setq index $value)
- (set_tile "h" index)
- (set_tile "d" index)
- (set_tile "H1" index)
- (set_tile "H2" index)"
- )
- (action_tile
- "h"
- "(setq index $value)
- (set_tile "b" index)
- (set_tile "d" index)
- (set_tile "H1" index)
- (set_tile "H2" index)"
- )
|