GITLAB
rtaniel
/
projetPPO_taniel_andjembe
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Issues
0
Merge Requests
0
Wiki
Download as
Email Patches
Plain Diff
Browse Code »
Commit
18e7a394774d0ae007d04d90077233ac1989aa52
Authored by
Remi
2019-06-06 13:40:46 +0200
1 parent
5f9c9a29
add package
Showing
3 changed files
with
17 additions
and
0 deletions
Show diff stats
.gitignore
src/app/Application.java
src/noyau/Grille.java
Inline
Side-by-side
.gitignore
Wrap text
Show/Hide comments
View file @
18e7a39
1
1
/.idea
2
2
*.iml
3
+/out
...
...
src/app/Application.java
0 → 100644
Wrap text
Show/Hide comments
View file @
18e7a39
...
...
@@ -0,0 +1,12 @@
1
+package app;
2
+
3
+import noyau.Grille;
4
+
5
+public class Application {
6
+
7
+ public static void main(String[] args) {
8
+ Grille grille = new Grille();
9
+
10
+ System.out.println("Hello world!");
11
+ }
12
+}
...
...
src/noyau/Grille.java
0 → 100644
Wrap text
Show/Hide comments
View file @
18e7a39
...
...
@@ -0,0 +1,4 @@
1
+package noyau;
2
+
3
+public class Grille {
4
+}
...
...