From fc0ff94dba7469e19c2075d920f58e156b786f98 Mon Sep 17 00:00:00 2001 From: Yohan Boujon Date: Sun, 15 Oct 2023 19:14:34 +0200 Subject: [PATCH] =?UTF-8?q?Exercice=201=20compil=C3=A9.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .classpath | 5 +++++ .vscode/settings.json | 7 +++++++ src/exercice1.java | 6 ++++++ 3 files changed, 18 insertions(+) create mode 100644 .classpath create mode 100644 .vscode/settings.json create mode 100644 src/exercice1.java 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