Index: tests/userLiterals.cfa
===================================================================
--- tests/userLiterals.cfa	(revision dc8511c89e456024f8e634c472b1ebc5d96cc56e)
+++ tests/userLiterals.cfa	(revision c9aba81c3ee82d43348c6732ccc807c623d1a2cc)
@@ -10,6 +10,6 @@
 // Created On       : Wed Sep  6 21:40:50 2017
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Tue Nov  6 18:02:03 2018
-// Update Count     : 55
+// Last Modified On : Tue Dec  4 22:03:10 2018
+// Update Count     : 56
 //
 
@@ -18,15 +18,15 @@
 #include <uchar.h>
 
-int ?`s( int s ) { sout | "secs" | s | endl; return s; }
-int ?`m( int m ) { sout | "mins" | m | endl; return m * 60; }
-int ?`h( int h ) { sout | "hours" | h | endl; return h * 3600; }
-int ?`_A_( int x ) { sout | "_A_" | x | endl; return x; }
-int ?`__thingy_( int x ) { sout | "_thingy_" | x | endl; return x; }
+int ?`s( int s ) { sout | "secs" | s; return s; }
+int ?`m( int m ) { sout | "mins" | m; return m * 60; }
+int ?`h( int h ) { sout | "hours" | h; return h * 3600; }
+int ?`_A_( int x ) { sout | "_A_" | x; return x; }
+int ?`__thingy_( int x ) { sout | "_thingy_" | x; return x; }
 
-int ?`s( const char * s ) { sout | "secs" | s | endl; return 0; }
-int ?`m( const char16_t * m ) { sout | "mins" | m | endl; return 0;}
-int ?`h( const char32_t * h ) { sout | "hours" | h | endl; return 0; }
-int ?`_A_( const wchar_t * str ) { sout | "_A_" | str | endl; return 0; }
-int ?`__thingy_( const char * str ) { sout | "_thingy_" | str | endl; return 0; }
+int ?`s( const char * s ) { sout | "secs" | s; return 0; }
+int ?`m( const char16_t * m ) { sout | "mins" | m; return 0;}
+int ?`h( const char32_t * h ) { sout | "hours" | h; return 0; }
+int ?`_A_( const wchar_t * str ) { sout | "_A_" | str; return 0; }
+int ?`__thingy_( const char * str ) { sout | "_thingy_" | str; return 0; }
 
 
@@ -46,17 +46,17 @@
 	Weight w, heavy = { 20 };							// 20 stone
 	w = 155`lb;
-	sout | w | endl;
+	sout | w;
 	w = 0b_1111`st;
-	sout | w | endl;
+	sout | w;
 	w = 0_233`lb;										// octal weight (155)
-	sout | w | endl;
+	sout | w;
 	w = 0x_9b_u`kg;
-	sout | w | endl;
+	sout | w;
 	w = 70.3`kg;
-	sout | w | endl;
+	sout | w;
 	w = 11`st + 1`lb;
-	sout | w | endl;
+	sout | w;
 	w = 5`st + 8`kg + 25`lb + heavy;
-	sout | w | endl;
+	sout | w;
 
 //	0`secs;
