18 lines
558 B
Markdown
18 lines
558 B
Markdown
|
# ASCII table
|
||
|
|
||
|
Puzzle from the [rendezvous with cassidoo](https://buttondown.email/cassidoo/archive/keep-your-face-to-the-sunshine-and-you-cannot-see-1741/) newsletter from October 30th, 2022.
|
||
|
|
||
|
> Print the ASCII printable characters code page (0x20-0x7E), without any built-ins or functions that do it for you.
|
||
|
>
|
||
|
> Characters to be printed:
|
||
|
> ```
|
||
|
> !"#$%&'()*+,-./
|
||
|
> 0123456789:;<=>?
|
||
|
> @ABCDEFGHIJKLMNO
|
||
|
> PQRSTUVWXYZ[\]^_
|
||
|
> `abcdefghijklmno
|
||
|
> pqrstuvwxyz{|}~
|
||
|
> ```
|
||
|
|
||
|
Solution posted at https://gist.github.com/zoeisnowooze/493e8b720803efb2a0574eadf295ea07
|