View previous topic :: View next topic |
Author |
Message |
ravikumar_sri2001 Beginner

Joined: 06 Dec 2002 Posts: 117 Topics: 44 Location: Chennai,India
|
Posted: Mon Apr 02, 2007 7:33 am Post subject: Variables in REXX |
|
|
Experts,
Unlike COBOL, we dont define any varibles in REXX before we use it. How does REXX tracks the datatype and length of the varibles ?.
Thanks,
Ravikumar. |
|
Back to top |
|
 |
dbzTHEdinosauer Supermod
Joined: 20 Oct 2006 Posts: 1411 Topics: 26 Location: germany
|
|
Back to top |
|
 |
semigeezer Supermod
Joined: 03 Jan 2003 Posts: 1014 Topics: 13 Location: Atlantis
|
Posted: Mon Apr 02, 2007 1:08 pm Post subject: |
|
|
all variables in Rexx are strings. For example, the following returns True Code: | if '1E2' = '100' then say 'True';else say 'False' | while the following is false Code: | if '1E2' == '100' then say 'True';else say 'False' |
|
|
Back to top |
|
 |
ravikumar_sri2001 Beginner

Joined: 06 Dec 2002 Posts: 117 Topics: 44 Location: Chennai,India
|
Posted: Mon Apr 02, 2007 10:56 pm Post subject: |
|
|
Thanks,experts. |
|
Back to top |
|
 |
|
|