On Jun 29, 2012, at 2:32 PM, kcrisman wrote:

> Just to clarify, Ivan means that at the top of the worksheet you could do
> 
> %auto
> gap._eval_using_file_cutoff = 1000
> 
> Of course, you'd have to be in "sage" evaluation mode to do this, not "gap".  
> This might be a good workaround.
> 
> Another possible workaround might also be to just indent less, though this 
> would only work for programs that were very short.

VERY short, 100 characters or less if you want to use Print etc.  

> %gap
> for n in [1..10] do
>  for m in [1..10] do
>   Print(m*n);
>   Print(" - ");
>  od;
>  Print("n");
> od;
> # works
> 
> Truly, it seems not to matter :)
> 
> %gap
> for n in [1..10] do for m in [1..10] do Print(m*n); Print(" - "); od; 
> Print("n"); od;
> # works
> 
> -- 
> To post to this group, send email to sage-support@googlegroups.com
> To unsubscribe from this group, send email to 
> sage-support+unsubscr...@googlegroups.com
> For more options, visit this group at 
> http://groups.google.com/group/sage-support
> URL: http://www.sagemath.org

-- 
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to 
sage-support+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/sage-support
URL: http://www.sagemath.org

Reply via email to