
Discussed in: http://lists.racket-lang.org/dev/archive/2013-January/011416.html A stub library in algol60/cfg-parser will re-export the contents of parser-tools/algol60 for backwards compatibility.
7 lines
240 B
Racket
7 lines
240 B
Racket
#lang racket/base
|
|
|
|
;; Legacy module. cfg-parser used to live in the algol60 collection.
|
|
;; This module re-exports its contents for backwards compatibility.
|
|
|
|
(require parser-tools/cfg-parser)
|
|
(provide (all-from-out parser-tools/cfg-parser)) |