Exercice 1 compilé.

This commit is contained in:
Yohan Boujon 2023-10-15 19:14:34 +02:00
parent 01fd22ce0f
commit fc0ff94dba
3 changed files with 18 additions and 0 deletions

5
.classpath Normal file
View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>

7
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,7 @@
{
"java.project.sourcePaths": ["src"],
"java.project.outputPath": "bin",
"java.project.referencedLibraries": [
"lib/**/*.jar"
]
}

6
src/exercice1.java Normal file
View file

@ -0,0 +1,6 @@
public class exercice1 {
public static void main(String[] argv)
{
System.out.println("Ola, mon Premier Programme");
}
}