syndicate-rkt/syndicate/main.rkt

19 lines
515 B
Racket
Raw Normal View History

; SPDX-License-Identifier: LGPL-3.0-or-later
2021-06-04 09:35:27 +00:00
; SPDX-FileCopyrightText: 2010-2021 Tony Garnock-Jones <tonyg@leastfixedpoint.com>
2018-04-29 11:22:12 +00:00
#lang racket/base
(provide (all-from-out "dataspace.rkt")
(all-from-out "assertions.rkt")
2018-04-29 11:22:12 +00:00
(all-from-out "syntax.rkt")
2018-04-29 13:54:14 +00:00
(all-from-out "ground.rkt")
(all-from-out "relay.rkt"))
2018-04-29 11:22:12 +00:00
2020-04-27 18:27:48 +00:00
(module reader syntax/module-reader syndicate/lang)
2018-04-29 11:22:12 +00:00
(require "dataspace.rkt")
(require "assertions.rkt")
2018-04-29 11:22:12 +00:00
(require "syntax.rkt")
(require "ground.rkt")
2018-04-29 13:54:14 +00:00
(require "relay.rkt")