hy/tests/lang/kwargs.hy

11 lines
227 B
Hy
Raw Normal View History

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