Re: joining lists.
- To: mathgroup at smc.vnet.net
- Subject: [mg23789] Re: joining lists.
- From: "William F. Campbell" <valentin at wam.umd.edu>
- Date: Sat, 10 Jun 2000 02:59:37 -0400 (EDT)
- Organization: UMD Dept. of Meteorology
- References: <8hff2o$ht9@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Otto Linsuain wrote: > > hi all, this should be simple. > I got: > list1={ some numbers } > > list2={ some other numbers } > I want { { some numbers }, { some other numbers } } Simpler than you might think -- {list1,list2} You can assign it to a variable if you want -- myvariable={list1,list2} Bill Campbell