gitweb on Svarog

projekti pod git sistemom za održavanje verzija -- projects under the git version control system
moved version.properties to a class subfolder to prevent conflicts
[mjc2wsl.git] / samples / RekFib.mj
index f4e3f09..d3a59a5 100644 (file)
@@ -2,8 +2,10 @@ program RekFib{
 
        int fib(int f)
        {
-               if (f==0) return 0;
-               if (f==1) return 1;
+               if (f==0) 
+                       return 0;
+               if (f==1) 
+                       return 1;
                return fib(f-2)+fib(f-1) ;
        }
        
Svarog.pmf.uns.ac.rs/gitweb maintanance Doni Pracner