hy/tests/lang/kwargs.hy

10 lines
217 B
Hy
Raw Normal View History

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 []
2012-12-23 20:02:47 +01:00
(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
}))