How to resolve the algorithm Show ASCII table step by step in the Quackery programming language

Published on 12 May 2024 09:40 PM

How to resolve the algorithm Show ASCII table step by step in the Quackery programming language

Table of Contents

Problem Statement

Show  the ASCII character set  from values   32   to   127   (decimal)   in a table format.

Let's start with the solution:

Step by Step solution about How to resolve the algorithm Show ASCII table step by step in the Quackery programming language

Source code in the quackery programming language

  [ dup 32  = iff
      [ drop say 'spc' ] done
    dup 127 = iff
      [ drop say 'del' ] done
    emit sp sp ]                    is echoascii  ( n --> )

  [ dup echo say ': '
    dup echoascii
    84 < 3 + times sp ]             is echoelt    ( n --> )

  [ sp 81 times
      [ dup i^ + echoelt 16 step ]
    drop cr ]                       is echorow    ( n --> )

  [ 16 times [ i^ 32 + echorow ] ]  is echotable  (   --> )

  echotable

  

You may also check:How to resolve the algorithm Map range step by step in the Nim programming language
You may also check:How to resolve the algorithm Extensible prime generator step by step in the JavaScript programming language
You may also check:How to resolve the algorithm Sum to 100 step by step in the F# programming language
You may also check:How to resolve the algorithm Extend your language step by step in the ALGOL W programming language
You may also check:How to resolve the algorithm 15 puzzle solver step by step in the Lua programming language