fixing the tests
This commit is contained in:
parent
87b602fc9f
commit
472da09f51
@ -1,4 +1,4 @@
|
|||||||
; vim: tabstop=2 expandtab shiftwidth=2 softtabstop=2 filetype=lisp
|
; vim: tabstop=2 expandtab shiftwidth=2 softtabstop=2 filetype=lisp
|
||||||
|
|
||||||
(def square (fn [arg]
|
(defn square [arg]
|
||||||
(* arg arg)))
|
(return (* arg arg)))
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
; vim: tabstop=2 expandtab shiftwidth=2 softtabstop=2 filetype=lisp
|
; vim: tabstop=2 expandtab shiftwidth=2 softtabstop=2 filetype=lisp
|
||||||
|
|
||||||
(import ["tests.lang.test_kwargs"])
|
(import "tests.lang.test_kwargs")
|
||||||
|
|
||||||
(def kiwi (fn []
|
(defn kiwi []
|
||||||
(kwapply (tests.lang.test_kwargs.shim "one" "two") {
|
(return (kwapply (tests.lang.test_kwargs.shim "one" "two") {
|
||||||
"three" "three"
|
"three" "three"
|
||||||
"four" "four"
|
"four" "four"
|
||||||
})
|
}))
|
||||||
))
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user