ASCII control characters: Difference between revisions

add RPL
imported>Maxima enthusiast
No edit summary
(add RPL)
Line 469:
Ord: 127, Unicode: <control-007F>, Enum: ␡
</pre>
 
=={{header|RPL}}==
There is no enum in RPL, but we can create global variables, each containing a specific control character, which are then available to all programs in the same directory tree.
≪ { NUL SOH STX ETX EOT ENQ ACK BEL BS HT LF VT FF CR SO SI DLE DC1 DC2 DC3 DC4 NAK SYN ETB CAN EM SUB ESC FS GS RS US }
0 31 '''FOR''' ctrl
ctrl CHR OVER ctrl GET STO
'''NEXT''' DROP
127 CHR 'DEL' STO
≫ '<span style="color:blue">→ASCII</span>' STO
 
=={{header|V (Vlang)}}==
1,150

edits