/*

  Write a program that switches the letters "e" and "o" in a string.
  Use the replace method repeatedly. Demonstrate the program on the
  string "Hello, World!" (Ex. P2.10)
  CSC120A - Berry College - Fall 2006
*/

public class Replacer {
  
  public static void main( String[] args ) {
    String str = "Hello, World!";
    
    
    
  } // end main method
  
} // end class
