more print statements

This commit is contained in:
Glen Whitney 2017-10-25 16:54:11 +02:00
parent 6afece7b15
commit 3f203ef98d
1 changed files with 3 additions and 1 deletions

View File

@ -411,7 +411,9 @@ InstallOtherMethod(DirectProductOp,
Print("Hi", n, "\n");
# Simple checks
Print("Ho", n=0, "\n");
if n = 0 then
Print("Ha", n<1, "\n");
# Why does the following fail?
if n < 1 then
Error("Usage: Cannot take DirectProduct of zero items.");
fi;
# if n < 2 then