RosettaCodeData/Task/Show-ASCII-table/Excel/show-ascii-table-1.excel
2023-07-01 13:44:08 -04:00

18 lines
321 B
Text

asciiTable
=LAMBDA(i,
justifyRight(3)(" ")(i) & ": " & (
justifyRight(
3
)(" ")(
IF(32 = i,
"Spc",
IF(127 = i,
"Del",
CHAR(i)
)
)
)
)
)(
SEQUENCE(16, 6, 32, 1)
)