[gesamt] Added and adopted Testcases from SS09
[testub10.git] / gesamt / old_abgabe_cb.0
diff --git a/gesamt/old_abgabe_cb.0 b/gesamt/old_abgabe_cb.0
new file mode 100644 (file)
index 0000000..0e0659b
--- /dev/null
@@ -0,0 +1,11 @@
+method f(x y)
+  return mymin(y,x);
+end;
+
+method mymin(x y)
+ if y<x then
+   return y;
+ else
+   return x;
+ end;
+end;