diff --git a/.classpath b/.classpath new file mode 100644 index 0000000..25a5e3b --- /dev/null +++ b/.classpath @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..e112a70 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,7 @@ +{ + "java.project.sourcePaths": ["src"], + "java.project.outputPath": "bin", + "java.project.referencedLibraries": [ + "lib/**/*.jar" + ] +} diff --git a/src/exercice1.java b/src/exercice1.java new file mode 100644 index 0000000..79a1c62 --- /dev/null +++ b/src/exercice1.java @@ -0,0 +1,6 @@ +public class exercice1 { + public static void main(String[] argv) + { + System.out.println("Ola, mon Premier Programme"); + } +} \ No newline at end of file