//File:	Hello0.java
import java.io.*;
import CSLib.*;

class Hello0
{
	public static void main (String [] args)
	{
		InputBox in = new InputBox();
		in.setPrompt ("What's the name of your file? ");
		String fileName = in.readString();
		
		//FileWriters convert char streams to byte streams
		FileWriter fw = new FileWriter (fileName);
		
		//PrintWriters convert Strings to char streams				
		PrintWriter outFile = new PrintWriter (fw);
		
		outFile.println ("Hi there gang!!.  Ain't this great?");
		outFile.close();
	}
}
