Skip to content
Snippets Groups Projects
Commit 8a20f76c authored by vincent thomas's avatar vincent thomas
Browse files

First commit README + HelloWorld

parents
No related branches found
No related tags found
No related merge requests found
# remove .class
*.class
@author : Vincent Thomas
@contexte : Module COO 2020-2021
# Présentation
Ceci est un dépot de test quasiment vide pour le module COO.
Il contient
- un fichier .gitignore refusant l'ajout de fichier .class
- un repertoire src contenant un HelloWord.java
Si vous arrivez à lire ce fichier, c'est que votre client git fonctionne correctement.
/**
* simple class HelloWorld
*/
class HelloWorld{
/**
* main program
*
* @param args not used here
*/
public static void main(String[] args) {
// print hello
System.out.println("Hello World");
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment