16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
;; You should have received a copy of the GNU General Public License
;; along with Megatest. If not, see <http://www.gnu.org/licenses/>.
;;======================================================================
(declare (unit dcommonmod))
(declare (uses commonmod))
(declare (uses configfmod))
(module dcommonmod
*
(import scheme chicken data-structures extras ports)
(use
|
>
|
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
;; You should have received a copy of the GNU General Public License
;; along with Megatest. If not, see <http://www.gnu.org/licenses/>.
;;======================================================================
(declare (unit dcommonmod))
(declare (uses commonmod))
(declare (uses debugprint))
(declare (uses configfmod))
(module dcommonmod
*
(import scheme chicken data-structures extras ports)
(use
|
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
srfi-1
regex
srfi-13
)
(import canvas-draw-iup)
(import commonmod)
(import configfmod)
(include "common_records.scm")
;;======================================================================
;; T R E E S T U F F
;;======================================================================
|
>
|
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
srfi-1
regex
srfi-13
)
(import canvas-draw-iup)
(import commonmod)
(import debugprint)
(import configfmod)
(include "common_records.scm")
;;======================================================================
;; T R E E S T U F F
;;======================================================================
|