The following example declares a piece of code to be written in Racket, and then prints the string Hello, world.
#lang racket
"Hello, world!"
Racket code can either be run directly from the command line or on the DrRacket IDE. Typing racket on the command line will start a REPL, and t...