Who says you can't teach a 54-year-old dog some new tricks? ;) COBOL on Wheelchair is a minimal webframework\^H\^H\^H\^H\^H\^H just a proof of concept. However, it partially works, and it can handle: routing; PATH variables (GET and POST on the way...); basic templating. In order to run COBOL on Wheelchair you will need: some http server; GNU COBOL [sudo apt-get install open-cobol]; ability to run cgi-bin . 1. Download: git clone https://github.com/azac/cobol-on-wheelchair 2. Configure URL rewriting COBOL on Wheelchair comes with .htaccess file for Apache. If you're on Linux and all goes well, you shoudn't need to worry about that. DirectoryIndex the.cow Options +ExecCGI AddHandler cgi-script .cow RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ the.cow/$1 [L] 3. Compile attached example ./downhill.sh 4...