2012-12-18 15:11:42 +01:00
|
|
|
; vim: tabstop=2 expandtab shiftwidth=2 softtabstop=2 filetype=lisp
|
|
|
|
|
2012-12-23 05:09:08 +01:00
|
|
|
(import "tests.lang.test_kwargs")
|
2012-12-18 15:11:42 +01:00
|
|
|
|
2012-12-23 05:09:08 +01:00
|
|
|
(defn kiwi []
|
|
|
|
(return (kwapply (tests.lang.test_kwargs.shim "one" "two") {
|
2012-12-18 15:11:42 +01:00
|
|
|
"three" "three"
|
|
|
|
"four" "four"
|
2012-12-23 05:09:08 +01:00
|
|
|
}))
|
|
|
|
)
|