wow le tp là

This commit is contained in:
Simoes Lukas
2025-09-04 15:36:55 +02:00
parent c16ef0985f
commit 2c3e150ec5
87 changed files with 1059 additions and 28 deletions

View File

@@ -0,0 +1,9 @@
public class Main {
public static void main(String[] args) {
if (args.length != 1) {
System.err.println("Entrez une valeur dans la console.");
System.exit(0);
}
Vote v = new Vote(args[0]);
}
}