If you make a definition, for example
blah := RandomChoice[{1, 1, 1, 1, 1} -> {1000, 1001, 1002, 1003,1004}]
is there any way to programmatically use blah to get that second list as an output? Some pattern of the Definition or FullDefinition...?
I know I have the list right there, but later on, after defining blah, I'd like to grab that second list of numbers and use it.
Thanks for any insight you might provide.
OwnValues[blah]– Kuba Mar 04 '17 at 18:47val={1000, 1001, 1002, 1003, 1004}and then use this to defineblah? – bill s Mar 04 '17 at 19:22