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 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 REXXTRY very appropriate when

Re: REXX Interpret Question - weekend 'fun'

2020-05-30 Thread Wayne Bickerdike
; 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@LISTSERV.UA.EDU

Re: REXX Interpret Question - weekend 'fun'

2020-05-30 Thread Seymour J Metz
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 Interpret to get the stem

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 wrote

Re: REXX Interpret Question - weekend 'fun'

2020-05-30 Thread Martin Packer
m/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' Sent by:

Re: REXX Interpret Question - weekend 'fun'

2020-05-30 Thread Lionel B Dyck
t 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 achieve that with VLUE as

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'

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 =

Re: REXX Interpret Question - weekend 'fun'

2020-05-30 Thread Lionel B Dyck
out your character than your reputation.  Character is what you are, reputation merely what others think you are." - John Wooden -Original Message- From: IBM Mainframe Discussion List On Behalf Of Jeremy Nicoll Sent: Saturday, May 30, 2020 5:54 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: R

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