21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
(declare (unit itemsmod))
(declare (uses commonmod))
(declare (uses mtconfigf))
(module itemsmod
*
(import scheme chicken data-structures extras)
(use (prefix sqlite3 sqlite3:) posix typed-records srfi-18 srfi-69 format ports srfi-1 matchable)
(import commonmod)
(import(prefix mtconfigf configf:))
;; (use (prefix ulex ulex:))
;; (include "common_records.scm")
;; (include "items-inc.scm")
|
|
|
|
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
(declare (unit itemsmod))
(declare (uses commonmod))
(declare (uses mtconfigf))
(module itemsmod
*
(import scheme (chicken base) chicken.pretty-print chicken.string)
(import (prefix sqlite3 sqlite3:) typed-records srfi-18 srfi-69 format (chicken port) srfi-1 matchable)
(import commonmod)
(import(prefix mtconfigf configf:))
;; (use (prefix ulex ulex:))
;; (include "common_records.scm")
;; (include "items-inc.scm")
|