Re: REXX Interpret Question - weekend 'fun'

2020-05-30 Thread Seymour J Metz
du/~smetz3 From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of Wayne Bickerdike [wayn...@gmail.com] Sent: Saturday, May 30, 2020 10:20 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: REXX Interpret Question - weekend 'fun' I've found REXX

Re: REXX Interpret Question - weekend 'fun'

2020-05-30 Thread Wayne Bickerdike
gt; -- > Shmuel (Seymour J.) Metz > http://mason.gmu.edu/~smetz3 > > > From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf > of Lionel B Dyck [lbd...@gmail.com] > Sent: Saturday, May 30, 2020 7:02 AM > To: IBM-MAIN@LISTS

Re: REXX Interpret Question - weekend 'fun'

2020-05-30 Thread Seymour J Metz
lf of Lionel B Dyck [lbd...@gmail.com] Sent: Saturday, May 30, 2020 7:02 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: REXX Interpret Question - weekend 'fun' True - what I'm hoping for is to be able to use Interpret to set a stem when I provide the stem name. Since I can use Inter

Re: REXX Interpret Question - weekend 'fun'

2020-05-30 Thread Seymour J Metz
From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of Jeremy Nicoll [jn.ls.mfrm...@letterboxes.org] Sent: Saturday, May 30, 2020 7:08 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: REXX Interpret Question - weekend 'fun' On Sat, 30 May 2020, at 11:54, Jeremy Nicoll w

Re: REXX Interpret Question - weekend 'fun'

2020-05-30 Thread Martin Packer
s.apple.com/gb/podcast/mainframe-performance-topics/id1127943573?mt=2 Youtube channel: https://www.youtube.com/channel/UCu_65HaYgksbF6Q8SQ4oOvA From: Lionel B Dyck To: IBM-MAIN@LISTSERV.UA.EDU Date: 30/05/2020 12:22 Subject:[EXTERNAL] Re: REXX Interpret Question - weekend 'fun&#

Re: REXX Interpret Question - weekend 'fun'

2020-05-30 Thread Lionel B Dyck
merely what others think you are." - John Wooden -Original Message- From: IBM Mainframe Discussion List On Behalf Of ITschak Mugzach Sent: Saturday, May 30, 2020 6:21 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: REXX Interpret Question - weekend 'fun' Lionel, you can achiev

Re: REXX Interpret Question - weekend 'fun'

2020-05-30 Thread ITschak Mugzach
Lionel, you can achieve that with VLUE as well. I think the problem with your example is that the getting variable was not interpreted. I use this syntax: xArray = My_Array Index = 4 LineNum = 8 /* OutVar.LineNum <== a previously set stem variable */ Interpret xArray'jCx = OutVar.LineNum' ITs

Re: REXX Interpret Question - weekend 'fun'

2020-05-30 Thread Jeremy Nicoll
On Sat, 30 May 2020, at 11:54, Jeremy Nicoll wrote: > On Sat, 30 May 2020, at 11:44, Lionel B Dyck wrote: > > > /* rexx */ > > > > test = 'testx' > > > > interpret 'test'.1 '= var' > > That first builds the string "test.1 = va

Re: REXX Interpret Question - weekend 'fun'

2020-05-30 Thread Lionel B Dyck
ect: Re: REXX Interpret Question - weekend 'fun' On Sat, 30 May 2020, at 11:44, Lionel B Dyck wrote: > /* rexx */ > > test = 'testx' > > interpret 'test'.1 '= var

Re: REXX Interpret Question - weekend 'fun'

2020-05-30 Thread Jeremy Nicoll
On Sat, 30 May 2020, at 11:44, Lionel B Dyck wrote: > /* rexx */ > > test = 'testx' > > interpret 'test'.1 '= var' That sets "test.1" > say testx.1 This is a different variable. -- Jeremy Nico

REXX Interpret Question - weekend 'fun'

2020-05-30 Thread Lionel B Dyck
So this works - can anyone help with the 2nd? /* rexx */ v.1 = 'abc';v.2 = 'def' interpret 'var = v'.1 interpret 'var2 = v'.2 say var var2 But this doesn't: /* rexx