Show ASCII table: Difference between revisions

Content added Content deleted
(→‎OCaml: add)
(Fix lang example ($val was set to Spc (instead of SPC) and Del (instead of DEL)))
Line 3,710: Line 3,710:
while($j < 128) {
while($j < 128) {
if($j == 32) {
if($j == 32) {
$val = Spc
$val = SPC
}elif($j == 127) {
}elif($j == 127) {
$val = Del
$val = DEL
}else {
}else {
$val = fn.char($j)
$val = fn.char($j)