Data update
This commit is contained in:
parent
5150844a7d
commit
4bb20c9b71
7735 changed files with 38060 additions and 199180 deletions
|
|
@ -8,3 +8,9 @@ gg = '10.' /*same as above ───► GG
|
|||
hh = "+10" /*assigns chars +10 ───► hh */
|
||||
ii = 1e1 /*assigns chars 1e1 ───► ii */
|
||||
jj = +.1e+2 /*assigns chars .1e+2 ───► jj */
|
||||
kk = '123'x /*assigns hex 00000123 ───► KK */
|
||||
kk = 'dead beaf'X /*assigns hex deadbeaf ───► KK */
|
||||
ll = '0000 0010'b /*assigns blank ───► LL (ASCII) */
|
||||
mm = '0000 0100'B /*assigns blank ───► MM (EBCDIC)*/
|
||||
cat = "Honest as the Cat when the meat's out of reach."
|
||||
/*assigns a literal ───► cat */
|
||||
|
|
|
|||
|
|
@ -1,8 +1,3 @@
|
|||
kk = '123'x /*assigns hex 00000123 ───► KK */
|
||||
kk = 'dead beaf'X /*assigns hex deadbeaf ───► KK */
|
||||
ll = '0000 0010'b /*assigns blank ───► LL (ASCII) */
|
||||
mm = '0000 0100'B /*assigns blank ───► MM (EBCDIC)*/
|
||||
|
||||
xxx = '11 2. 333 -5'
|
||||
parse var xxx nn oo pp qq rr
|
||||
/*assigns 11 ───► NN */
|
||||
|
|
@ -14,5 +9,9 @@ parse var xxx nn oo pp qq rr
|
|||
/*a "null" is a string of length zero (0), */
|
||||
/*and is not to be confused with a null char.*/
|
||||
|
||||
cat = 'A cat is a lion in a jungle of small bushes.'
|
||||
/*assigns a literal ───► CAT */
|
||||
parse value 1 2 3 with ss tt uu
|
||||
/*assigns 1 ───► SS */
|
||||
/*assigns 2 ───► TT */
|
||||
/*assigns 3 ───► UU */
|
||||
parse value ss tt with tt ss
|
||||
/*swaps SS and TT */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue