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.
 
 
 
 
 
 

21 lines
298 B

  1. (import "tests/import1.slime")
  2. (assert (= a 1111))
  3. (assert (= (get-a-1) 1111))
  4. (import "tests/import2.slime")
  5. (assert (= a 1111))
  6. (assert (= (get-a-1) 1111))
  7. (assert (= (get-a-2) 1111))
  8. (set-a-2 11)
  9. (assert (= a 11))
  10. (assert (= (get-a-1) 11))
  11. (assert (= (get-a-2) 11))