Skip to content

Commit

Permalink
Add data-lib to run dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
soegaard committed Jun 20, 2024
1 parent ed6a322 commit 2eeef8b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions metapict/info.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
))

(define deps '("base"
"data-lib"
"draw-lib"
"math-lib"
"gui-lib"
Expand Down
6 changes: 4 additions & 2 deletions metapict/skyline.rkt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#lang racket
#lang racket/base
(provide skyline
skyline->lines)

Expand All @@ -9,7 +9,9 @@
; A building specification is a left position, height, and right position.
; The output is a skyline - a list of points that will be connected by interleaving horizontal and vertical lines.

(require data/heap)
(require data/heap
racket/list
racket/match)

(define (skyline input)
; <active-set>
Expand Down

0 comments on commit 2eeef8b

Please sign in to comment.