]> Joshua Wise's Git repositories - jwcc.git/blame - examples/break.c
Add the break.c example
[jwcc.git] / examples / break.c
CommitLineData
6a2c8011
JW
1int dummy()
2{
3 return 0;
4}
5
6int test(int in1) {
7 int result = 0;
8 while (in1 > 0)
9 {
10 in1 = in1 - 1;
11 result = result + 1;
12 }
13 return result;
14}
15
16int main() {
17 return test(5);
18}
This page took 0.022752 seconds and 4 git commands to generate.