Data update
This commit is contained in:
parent
796d366b97
commit
35bcdeebf8
504 changed files with 7045 additions and 610 deletions
7
Task/Show-ASCII-table/Haskell/show-ascii-table-2.hs
Normal file
7
Task/Show-ASCII-table/Haskell/show-ascii-table-2.hs
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
(-> (for i (range 16)
|
||||
j (range (+ i 32) 128 16)
|
||||
(let k (match j 32 "Spc" 127 "Del" (str (char-code j) " ")))
|
||||
(strn ((< j 100) " ") j " : " k))
|
||||
(partition 6)
|
||||
(map (join " "))
|
||||
(join "\n"))
|
||||
Loading…
Add table
Add a link
Reference in a new issue