Just another update
This commit is contained in:
parent
a25938f123
commit
00a190b0a6
6591 changed files with 94363 additions and 23227 deletions
|
|
@ -1,16 +1,7 @@
|
|||
It's also possible to express characters in hexadecimal notation in a string:
|
||||
lf = '0A'x
|
||||
cr = '0D'x
|
||||
|
||||
mmm='01 02 03 34 ee'x
|
||||
ppp='dead beaf 11112222 33334444 55556666 77778888 00009999 c0ffee'X
|
||||
mmm = '01 02 03 34 ee'x
|
||||
ppp = 'dead beaf 11112222 33334444 55556666 77778888 00009999 c0ffee'X
|
||||
|
||||
lang='52455858'x /*which is "REXX" on ASCII-computers.*/
|
||||
|
||||
Binary strings are also possible:
|
||||
|
||||
jjj='01011011'B
|
||||
jjj='01011011'b
|
||||
jjj="0101 1011"b
|
||||
jjj='0101 1011 1111'b
|
||||
longjjj='11110000 10100001 10110010 11100011 11100100'B
|
||||
lang = '52455858'x /*which is "REXX" on ASCII-computers.*/
|
||||
|
|
|
|||
5
Task/Literals-String/REXX/literals-string-4.rexx
Normal file
5
Task/Literals-String/REXX/literals-string-4.rexx
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
jjj = '01011011'B
|
||||
jjj = '01011011'b
|
||||
jjj = "0101 1011"b
|
||||
jjj = '0101 1011 1111'b
|
||||
longjjj = '11110000 10100001 10110010 11100011 11100100'B
|
||||
Loading…
Add table
Add a link
Reference in a new issue