//File:	Hello2.java
import java.io.*;
import iostuff.*;

class Hello2
{
	public static void main (String [] args) throws IOException
	{
		System.out.print ("What's the name of your file? ");
		String fileName = Keyboard.readString();
		
		//FileWriters convert char streams to byte streams
		FileWriter fr = new FileWriter (fileName);
		
		//PrintWriters convert Strings to char streams
		PrintWriter out = new PrintWriter (fr);
		
		out.println ("Hi there gang!!.  Ain't this great?");
		out.close();
	}
}