//File:	Hello0.java
import java.io.*;
import iostuff.*;

class Hello0
{
	public static void main (String [] args)
	{
		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();
	}
}