Skip to content

Commit

Permalink
Merge pull request #14 from cmsc430/add-main
Browse files Browse the repository at this point in the history
Add main.rkt in Knock.
  • Loading branch information
dvanhorn authored Nov 13, 2024
2 parents 5a7eef1 + 27654b0 commit f7106b6
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 f7106b6

Please sign in to comment.