Data update
This commit is contained in:
parent
4bb20c9b71
commit
cbaf4c4b64
12390 changed files with 318560 additions and 27248 deletions
7
Task/Character-codes/Rebol/character-codes.rebol
Normal file
7
Task/Character-codes/Rebol/character-codes.rebol
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
print to integer! first "a" ;; == 97
|
||||
print to integer! #"a" ;; == 97
|
||||
print to binary! "a" ;; == #{61}
|
||||
print to char! 97 ;; == a
|
||||
print to char! 0#61 ;; == a ;; available only in Rebol3
|
||||
print #"^(61)" ;; == a
|
||||
print to-hex #"a" ;; == 61 ;; since Rebol 3.20.0
|
||||
Loading…
Add table
Add a link
Reference in a new issue