Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
6
Task/Literals-String/REXX/literals-string-1.rexx
Normal file
6
Task/Literals-String/REXX/literals-string-1.rexx
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
char1 = "A"
|
||||
char2 = 'A'
|
||||
str = "this is a string"
|
||||
another = 'this is also a string'
|
||||
escape1 = "that's it!"
|
||||
escape2 = 'that''s it!'
|
||||
3
Task/Literals-String/REXX/literals-string-2.rexx
Normal file
3
Task/Literals-String/REXX/literals-string-2.rexx
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
amount = 100
|
||||
result = "You got" amount "points."
|
||||
say result
|
||||
7
Task/Literals-String/REXX/literals-string-3.rexx
Normal file
7
Task/Literals-String/REXX/literals-string-3.rexx
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
lf = '0A'x
|
||||
cr = '0D'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.*/
|
||||
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