import com.braju.format.*; 
import java.io.*;

public class Example08 { 
  public static void main(String argv[]) {
    Parameters p = new Parameters();

    try {
      Writer out = new FileWriter("Example08.out");
      String s = Format.sprintf("Hello %s!\n", p.add("world"));
      out.write(s);
      out.close();
    } catch (java.io.IOException ex) {
      System.err.println("Could not write to file.");
      System.exit(1);
    }
  } 
} 
