Exercice 6, Partie 2.
This commit is contained in:
parent
b2eaec0ef2
commit
02a782ad1e
2 changed files with 13 additions and 1 deletions
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
|
@ -2,6 +2,7 @@
|
|||
"java.project.sourcePaths": ["src"],
|
||||
"java.project.outputPath": "bin",
|
||||
"java.project.referencedLibraries": [
|
||||
"lib/**/*.jar"
|
||||
"lib/**/*.jar",
|
||||
"vendor/**/*.jar"
|
||||
]
|
||||
}
|
||||
|
|
11
src/partie6/exercice62_deb.java
Normal file
11
src/partie6/exercice62_deb.java
Normal file
|
@ -0,0 +1,11 @@
|
|||
package partie6;
|
||||
|
||||
import com.itextpdf.text.Document;
|
||||
|
||||
public class exercice62_deb {
|
||||
public static void main(String[] args) {
|
||||
Document document = new Document();
|
||||
document.addAuthor("Yohan Boujon");
|
||||
document.addCreationDate();
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue