exo6: add the basic code structure with the right class hierarchy
[Project_POO.git] / exo6 / Chiffre.java
diff --git a/exo6/Chiffre.java b/exo6/Chiffre.java
new file mode 100644 (file)
index 0000000..1a0c3cb
--- /dev/null
@@ -0,0 +1,7 @@
+
+class Chiffre extends Facteur {
+
+    public boolean evaluer() {
+        return true;
+    }
+}