3.8 Racket Web Programming

Repeat the Raw Web Programming assignment using the Racket Web Server and using its automatic continuation tracking, rather than manually representing your continuations as you did in the first version of the assignment.

Include a "README" file in your submission. Additionally, contrast 3-5 language features that you used in this assignment to the language features encountered in the Raw Web Programming assignments.

You may write your servlets in DrRacket and save them anywhere. Use this template for your servlets:

#lang web-server/insta
 
(define (start initial-request)
  ; initial page goes here
  ....)
You can run your servlet by pressing Run.

You will find it useful to read the following documentation: