From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Tolpin Message-Id: <200403051354.i25Ds3IZ009811@adat.davidashen.net> To: 9fans@cse.psu.edu Subject: Re: [9fans] COND LIST on vlong In-Reply-To: Content-Type: text/plain; charset=KOI8-R Date: Fri, 5 Mar 2004 17:54:03 +0400 Topicbox-Message-UUID: 1885c42c-eacd-11e9-9e20-41e7f4b1d025 > I'm assuming that by COMMA you mean expressions separated by > COMMAs? If so, that is supported. I thought you meant vlong > comma separated expressions or is that really what you mean? cpu% cat testv.c #include vlong foo() { vlong x=1; vlong y=2; vlong z; z=x,y; return z; } cpu% 8c -c testv.c testv.c:8 unknown vlong COMMA