PPWIZARD Manual
[Bottom][Contents][Search][Prev]: Standard Definitions[Next]: <?=RexxExpression>

<??RexxVariable>

It is possible to access rexx variables without first obtaining a copy of their value with the "#evaluate command. Any symbol that starts with <?? and ends with > is a command to get the value of the rexx variable between.

This is a Standard Definition which always exists (you don't need to #define it). Note that you can create your own variations or completely new ones (see the examples).

Example

The following is an example which creates <H1>, <H2> HTML tagging etc:

    #RexxVar    HeadingLevel = 1                      ;;Create a rexx variable (set to 1)
    #RexxVar    HeadingLevel + 1                      ;;Increase value by 1
    
    <H<??HeadingLevel>>A heading</H<??HeadingLevel>>  ;;Use it
    


[Top][Contents][Search][Prev]: Standard Definitions[Next]: <?=RexxExpression>

PPWIZARD Manual
My whole website and this manual itself was developed using PPWIZARD (free preprocessor written by Dennis Bareis)
Tuesday January 02 2001 at 7:37am