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.
 
 
 
 
 
 

18 line
253 B

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