View previous topic :: View next topic
|
Author |
Message |
abc2000
New User
Joined: 15 Dec 2005 Posts: 5
|
|
|
|
REXX 'say' connot output some characters such as '{' '}' , but EXECIO output normally
say "{ $ } [ ] "
: : : : :
How to output these character using 'say' |
|
Back to top |
|
|
superk
Global Moderator
Joined: 26 Apr 2004 Posts: 4652 Location: Raleigh, NC, USA
|
|
|
|
I dunno:
This code:
/* REXX */
Say "Start"
Say "{ $ } [ ]"
Say "End"
Gave me this result:
Start
{ $ } [ ]
End |
|
Back to top |
|
|
ranjanp
New User
Joined: 02 May 2006 Posts: 25
|
|
|
|
i tried running the same code with all the special characters. the code is given below:
/* REXX */
SAY "START"
SAY "!~`@#% &*()_+;'.,/?: {}?\"
SAY "END"
This is waht i got as output:
START
!::@#%:::&*()_+;'.,/?::::
END
***
No idea how Superk got the desired results. It might be a system setting. [/b] |
|
Back to top |
|
|
|