*** empty log message ***

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4201 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Matthias Köppe 2002-12-13 17:29:03 +00:00
commit ee8a4d809a

View file

@ -17,8 +17,8 @@
(check (equal? (one-to-seven-list2) '(1 2 3 4 5 6 7)))
(check (equal? (one-to-seven-vector2) #(1 2 3 4 5 6 7)))
(check (= (sum-lists '(1 2 3) '(4 5 6) '(7 8 9)) 45))
(check (= (sum-lists2 '(1 2 3) '(4 5 6) '(7 8 9)) 45))
(check (= (sum-lists '(1 2 3) '(4 5 6) '(7 8 9)) 45.0))
(check (= (sum-lists2 '(1 2 3) '(4 5 6) '(7 8 9)) 45.0))
(check (equal? (call-with-values produce-lists list)
'(#(0 1 2 3 4)
#(0 1 4 9 16)