Move fees table specification into separate module.

This commit is contained in:
Dominik Pantůček 2023-04-12 20:41:59 +02:00
parent 71341314d8
commit 0fa45c375b
3 changed files with 13 additions and 10 deletions

View file

@ -28,8 +28,15 @@
(module
specification
(
member-fees-lookup-table
)
(import scheme)
(import scheme
period)
;; Convert into lookups - a list of (list period regular student)
(define member-fees-lookup-table
(make-period-lookup-table
'(((2010 1) 500 250))))
)