Index: ex0.C
===================================================================
--- ex0.C	(revision 4855)
+++ ex0.C	(working copy)
@@ -46,6 +46,7 @@
 #include "error_vector.h"
 #include "kelly_error_estimator.h"
 #include "mesh_refinement.h"
+#include "exodusII_io.h"
 
 // Bring in everything from the libMesh namespace
 using namespace libMesh;
@@ -140,11 +141,15 @@
   // Construct gnuplot plotting object, pass in mesh, title of plot
   // and boolean to indicate use of grid in plot. The grid is used to
   // show the edges of each element in the mesh.
-  GnuPlotIO plot(mesh,"Example 0", GnuPlotIO::GRID_ON);
+  //GnuPlotIO plot(mesh,"Example 0", GnuPlotIO::GRID_ON);
 
-  // Write out script to be called from within gnuplot:
-  // Load gnuplot, then type "call 'gnuplot_script'" from gnuplot prompt
-  plot.write_equation_systems("gnuplot_script",equation_systems);
+  ExodusII_IO output( mesh );
+  output.write( "test.exo" );
+  //output.write_equation_systems("test_es.exo",equation_systems);
+
+  //Mesh mesh2;
+  //mesh2.read( "test.exd" );
+
 #endif // #ifndef LIBMESH_ENABLE_AMR
   
   // All done.  libMesh objects are destroyed here.  Because the
