Skip to content

Commit 4f0e6ec

Browse files
committed
structure
1 parent c7a6a2a commit 4f0e6ec

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ testing {
3434
// Apply a specific Java toolchain to ease working on different environments.
3535
java {
3636
toolchain {
37-
languageVersion = JavaLanguageVersion.of(25)
37+
languageVersion = JavaLanguageVersion.of(21)
3838
}
3939
}
4040

4141
application {
4242
// Define the main class for the application.
43-
mainClass = 'org.example.App'
43+
mainClass = 'io.github.project516.NumberGuessingGame.Main'
4444
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package io.github.project516.NumberGuessingGame;
2+
3+
public class Main {
4+
public static void main(String[] args) {
5+
System.out.println("Hello");
6+
}
7+
}

0 commit comments

Comments
 (0)