BaseConv 1.1 
To convert from a base to another.

----------------------------------------
Programming language: TI Basic

Arguments: string, real, real
BaseConv("1001110100010010",2,25) converts 1001110100010010 from base 2 to 
base 25. The result is a list {"2E8A",25}.

The digits that are letters can be typed either lowercase or uppercase, but
the program always returns uppercase letters.

You can notice that this program doesn't make sure that the real arguments
are integers between 2 and 36, and doesn't check the string for validity.
That means that BaseConv("8",2,23.5) won't provoke any error. So be careful.


----------------------------------------
Versions history:
	1.1	Reprogrammed. Removes a few mistakes.
	1.0	Had a few mistakes and was slow.


----------------------------------------
http://zap.to/hsimpson/
David Haguenauer, hsamplon@lemel.fr