/**
* Demontrates the conversion of an object into a string
*
* @author TK Rogers
* @version 11-03-09
*/
public class NumberToString
{
public static void main(){
String s;
Fraction x = new Fraction(3, 4);
x.toString();
System.out.println(x.toString());
System.out.println(x);
}
}