Message 1 of 10
Generate numbered variables in loop
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi all,
I'm looking to make lists of variable values in a loop.
Each pass i need to create a new list as follows:
(setq 1-2 (list A B C))
(setq 2-3 (list A B C))
(setq 3-4 (list A B C))
(setq 4-5 (list A B C))
;end loop
Then gather all new lists, example(1-2, 2-3, 3-4, 4-5)
so basically add 1 to each number on each side of "-"
I hope that makes sense.