-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Milestone
Description
Could you include a function so that Sanny Builder can convert a character to an ASCII number?
char 1@ = "A" -> 0006: 1@ = 65 // or 0x41
char $2 = "4" -> 0004: $2 = 52 // or 0x34
char 3@ = "\s" -> 0006: 3@ = 32 // or 0x20
char $4 = "\n" -> 0004: $4 = 10 // or 0x0A
5@c = "9" -> 0006: 5@ = 57 // or 0x39
c$6 = "F" -> 0004: $6 = 70 // or 0x46
Reactions are currently unavailable