Index: tests/concurrent/examples/quickSort.cfa
===================================================================
--- tests/concurrent/examples/quickSort.cfa	(revision b0c7419eaea3be8c569d9296836b9fdf20f008ab)
+++ tests/concurrent/examples/quickSort.cfa	(revision a8078eef84a4a1ff1e577a67991ee2e0f64210a2)
@@ -11,6 +11,6 @@
 // Created On       : Wed Dec  6 12:15:52 2017
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Oct 10 13:58:18 2019
-// Update Count     : 176
+// Last Modified On : Wed Feb 12 18:24:47 2020
+// Update Count     : 177
 //
 
@@ -27,5 +27,5 @@
 
 void ?{}( Quicksort & qs, int values[], int size, int depth ) {
-	qs.values = values;  qs.low = 0;  qs.high = size;  qs.depth = depth;
+	qs.[values, low, high, depth] = [values, 0, size, depth];
 } // Quicksort
 
@@ -167,5 +167,5 @@
 			values[counter] = size - counter;			// descending values
 		} // for
-		for ( int i = 0; i < 200; i +=1 ) {				// random shuffle a few values
+		for ( i; 200 ) {								// random shuffle a few values
 			swap( values[rand() % size], values[rand() % size] );
 		} // for
