fixing the tests

This commit is contained in:
Paul Tagliamonte 2012-12-22 23:09:08 -05:00
parent 87b602fc9f
commit 472da09f51
2 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
; vim: tabstop=2 expandtab shiftwidth=2 softtabstop=2 filetype=lisp
(def square (fn [arg]
(* arg arg)))
(defn square [arg]
(return (* arg arg)))

View File

@ -1,10 +1,10 @@
; vim: tabstop=2 expandtab shiftwidth=2 softtabstop=2 filetype=lisp
(import ["tests.lang.test_kwargs"])
(import "tests.lang.test_kwargs")
(def kiwi (fn []
(kwapply (tests.lang.test_kwargs.shim "one" "two") {
(defn kiwi []
(return (kwapply (tests.lang.test_kwargs.shim "one" "two") {
"three" "three"
"four" "four"
})
))
}))
)