User:Nyet/sandbox: Difference between revisions

From S4wiki
Jump to navigation Jump to search
Content deleted Content added
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
asdfasdf
asdfasdf


<c>for (i=0;i<foo;i++) {
<source lang="c">for (i=0;i<foo;i++) {
switch(i) {
switch(i) {
case 1: bar() break;
case 1: bar() break;
Line 7: Line 7:
}
}
}
}
</c>
</source>

Latest revision as of 07:33, 20 July 2007

asdfasdf

for (i=0;i<foo;i++) {
   switch(i) {
      case 1: bar() break;
      default: foo() break;
   }
}