aboutsummaryrefslogtreecommitdiff
path: root/tests/step6_file.mal
blob: c6df3ebd939e43234e8cd66b7c1e44f0e4b3c882 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
;; Testing load-file

(load-file "../tests/inc.mal")
(inc1 7)
;=>8
(inc2 7)
;=>9
(inc3 9)
;=>12

(load-file "../tests/incB.mal")
; "incB.mal finished"
;=>"incB.mal return string"
(inc4 7)
;=>11
(inc5 7)
;=>12