Skip to content

Commit

Permalink
Add main.rkt in Knock.
Browse files Browse the repository at this point in the history
  • Loading branch information
dvanhorn committed Nov 12, 2024
1 parent 5a7eef1 commit 27654b0
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions knock/main.rkt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#lang racket
(require "ast.rkt")
(require "parse.rkt")
(require "interp.rkt")
(require "compile.rkt")
(require "run.rkt")
(provide (all-from-out "ast.rkt"))
(provide (all-from-out "parse.rkt"))
(provide (all-from-out "interp.rkt"))
(provide (all-from-out "compile.rkt"))
(provide (all-from-out "run.rkt"))


0 comments on commit 27654b0

Please sign in to comment.