| Using |
| Syntax |
Using R Do C EndUsing where R is the identifier for a ring and C is a sequence of commands. |
| Description |
Using R Do
C;
EndUsing;
is equivalent to
Use R; C; Use S;
| Example |
Use S ::= QQ[x,y]; -- the current ring is S R ::= QQ[a,b,c]; -- another ring Using R Do Indets(); EndUsing; [a, b, c] ------------------------------- |
| See Also |