batch( * , test) and sets
- Subject: batch( * , test) and sets
- From: John Lapeyre
- Date: Mon, 15 Sep 2008 13:30:21 -0700
Hello,
I find this puzzling
testsets.mac:
------------------
{1,2,3};
{1,2,3};
is ( {1,2,3} = {1,2,3} );
true;
------------------
(%i1) batch("testsets.mac",test);
********************** Problem 1 ***************
Input:
{1,2,3}
Result:
{1,2,3}
This differed from the expected result:
{1,2,3}
********************** Problem 2 ***************
Input:
is({1,2,3} = {1,2,3})
Result:
true
... Which was correct.
1/2 tests passed.
--John