Index: translator/examples/iostream.c
===================================================================
--- translator/examples/iostream.c	(revision b87a5edee8b2aa6c36e184150ebd60baf4c64251)
+++ translator/examples/iostream.c	(revision a32b204359041ff1f6ef505a929495bcfe7a54f3)
@@ -50,13 +50,13 @@
     do {
 	is >> &cur;
-	if( fail( is ) || eof( is ) ) return is;
-    } while( !( cur >= '0' && cur <= '9' ) );
+	if ( fail( is ) || eof( is ) ) return is;
+    } while ( !( cur >= '0' && cur <= '9' ) );
   
     // accumulate digits
     *ip = 0;
-    while( cur >= '0' && cur <= '9' ) {
+    while ( cur >= '0' && cur <= '9' ) {
 	*ip = *ip * 10 + ( cur - '0' );
 	is >> &cur;
-	if( fail( is ) || eof( is ) ) return is;
+	if ( fail( is ) || eof( is ) ) return is;
     }
   
Index: translator/examples/iterator.c
===================================================================
--- translator/examples/iterator.c	(revision b87a5edee8b2aa6c36e184150ebd60baf4c64251)
+++ translator/examples/iterator.c	(revision a32b204359041ff1f6ef505a929495bcfe7a54f3)
@@ -10,5 +10,5 @@
 /// {
 ///   iterator_type i;
-///   for( i = begin; i != end; ++i ) {
+///   for ( i = begin; i != end; ++i ) {
 ///     func( *i );
 ///   }
Index: translator/examples/iterator.h
===================================================================
--- translator/examples/iterator.h	(revision b87a5edee8b2aa6c36e184150ebd60baf4c64251)
+++ translator/examples/iterator.h	(revision a32b204359041ff1f6ef505a929495bcfe7a54f3)
@@ -19,5 +19,5 @@
 };
 
-context iterator_for( type iterator_type, type collection_type, type elt_type | iterator( iterator_type, elt_type ) ) {
+context iterator_for ( type iterator_type, type collection_type, type elt_type | iterator( iterator_type, elt_type ) ) {
 //    [ iterator_type begin, iterator_type end ] get_iterators( collection_type );
     iterator_type begin( collection_type );
Index: translator/examples/simplePoly.c
===================================================================
--- translator/examples/simplePoly.c	(revision b87a5edee8b2aa6c36e184150ebd60baf4c64251)
+++ translator/examples/simplePoly.c	(revision a32b204359041ff1f6ef505a929495bcfe7a54f3)
@@ -13,5 +13,5 @@
     int y;
     double x;
-//  if( y )
+//  if ( y )
     q( 3, &x );
 }
Index: translator/examples/test.c
===================================================================
--- translator/examples/test.c	(revision b87a5edee8b2aa6c36e184150ebd60baf4c64251)
+++ 	(revision )
@@ -1,13 +1,0 @@
-#include "fstream.h"
-#include "vector_int.h"
-
-int main() {
-    ofstream *sout = ofstream_stdout();
-    vector_int vec = vector_int_allocate();
-    int index;
-    switch(1) {
-      case 1:
-	sout << vec[ index ];
-    }
-    sout << "\n";
-}
