e.g., if someone does ```python a = gpac.specie('A') ``` instead of ```python a, = gpac.specie('A') ``` then `a` will be a Tuple[Specie] and cause an error with `b+a >> c+d`.
e.g., if someone does
instead of
then
awill be a Tuple[Specie] and cause an error withb+a >> c+d.