ASCII control characters: Difference between revisions

m
Line 315:
del = 127
end
@show display(nul), display(ht), display(us), display(del)
</syntaxhighlight>
A named tuple is a another way to reference such control Chars by name:
Line 356:
</syntaxhighlight>{{out}}
<pre>
nul::Control = 0
(nul, ht, us, del) = (nul, ht, us, del)
ht::Control = 9
us::Control = 31
del::Control = 127
(CNTRL.nul, CNTRL.ht, CNTRL.us, CNTRL.del) = (0, 9, 31, 127)
</pre>
4,105

edits