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 ; vim: tabstop=2 expandtab shiftwidth=2 softtabstop=2 filetype=lisp
(def square (fn [arg] (defn square [arg]
(* arg arg))) (return (* arg arg)))

View File

@ -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"
}) }))
)) )