Relative Content

Tag Archive for racket

Unbound Identifier Racket

#lang racket (define-syntax unpack (syntax-rules () [(unpack) (begin (define x 1))])) (unpack) (+ x 1) Why is it that I am getting an error: x: unbound identifier in: x? After defining the macro, I expect the code to define x appropriate w/o error? I can’t seem to figure this out, could it be an issue […]

Design of Programming Languages

What are some resources for learning the design of programming language? I am a computer science student, and I have this course with a professor who is not good a teaching.

File explorer functionality for DrRacket?

For me, adding the ability to browse files/directories to DrRacket would be a giant help. I found a reference to the plugin, “files-viewer” but documentation links are broken. Can anyone offer how-to info on using this plugin or some other alternative? Thanks!