From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <59a908a62c52dd9ff6252fe697d37a87@coraid.com> To: 9fans@cse.psu.edu Subject: Re: [9fans] A Plan 9 C request.... From: Brantley Coile Date: Wed, 1 Mar 2006 13:23:27 -0500 In-Reply-To: <512d50b944dded9e4273ce3d066f52b7@swtch.com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Topicbox-Message-UUID: 0874d4c0-ead1-11e9-9d60-3106f5b1d025 > now means > > { int i; for(i=0; i<10; i++); } Does that mean the following will compile? void f(void) { i = 3; put(i); for (int i = 0; i < 3; i++) put(i); if (i == 4) put(4); }