I just discovered the Function List feature. I would like to use it to create a list of the functions in my Rexx programs, but I can't figure out the /Function String syntax.
First, does UE scan the code and find the function names or do I need to put a comment string by each function to identify it? I'd like to learn how to do it both ways.
A Rexx function name is just a label, which is a valid name followed by a colon. There can be some keywords after the colon.
Function1:
Function2: Procedure
Rexx comments start with "/*", end with "*/", and can span multiple lines. /* This is a comment */
Can someone give me a correct /Function String statement and what to put in the code?
I just want a list of the functions. I don't care too much about the calls.
There are several Rexx wordfiles on the website. Some of them have /Function String statements. One of them is:
/Function String = "%[a-zA-Z]*)"
I tried putting that one in my wordfile and pushing F8. It caused some (but not all) of the calls to subroutines to show up in the Function List, but none of the actual functions.
Thanks
PS: I am running UE 14.20.1.1008 on WinXP.
First, does UE scan the code and find the function names or do I need to put a comment string by each function to identify it? I'd like to learn how to do it both ways.
A Rexx function name is just a label, which is a valid name followed by a colon. There can be some keywords after the colon.
Function1:
Function2: Procedure
Rexx comments start with "/*", end with "*/", and can span multiple lines. /* This is a comment */
Can someone give me a correct /Function String statement and what to put in the code?
I just want a list of the functions. I don't care too much about the calls.
There are several Rexx wordfiles on the website. Some of them have /Function String statements. One of them is:
/Function String = "%[a-zA-Z]*)"
I tried putting that one in my wordfile and pushing F8. It caused some (but not all) of the calls to subroutines to show up in the Function List, but none of the actual functions.
Thanks
PS: I am running UE 14.20.1.1008 on WinXP.
I am running UE 16.30.0.1000 on WinXP (all updates applied).