You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- (import "tests/import1.slime")
-
- (assert (= a 1111))
- (assert (= (get-a-1) 1111))
-
-
- (import "tests/import2.slime")
-
-
- (assert (= a 1111))
- (assert (= (get-a-1) 1111))
- (assert (= (get-a-2) 1111))
-
- (set-a-2 11)
-
- (assert (= a 11))
-
- (assert (= (get-a-1) 11))
-
- (assert (= (get-a-2) 11))
|