/trunk/Examples/ocaml/simple/example.c
# · C · 18 lines · 11 code · 4 blank · 3 comment · 1 complexity · e23a52329483450248d1cc30b9f369a0 MD5 · raw file
- /* File : example.c */
- /* A global variable */
- double Foo = 3.0;
- /* Compute the greatest common divisor of positive integers */
- int gcd(int x, int y) {
- int g;
- g = y;
- while (x > 0) {
- g = x;
- x = y % x;
- y = g;
- }
- return g;
- }