We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7a6a2a commit 4f0e6ecCopy full SHA for 4f0e6ec
2 files changed
app/build.gradle
@@ -34,11 +34,11 @@ testing {
34
// Apply a specific Java toolchain to ease working on different environments.
35
java {
36
toolchain {
37
- languageVersion = JavaLanguageVersion.of(25)
+ languageVersion = JavaLanguageVersion.of(21)
38
}
39
40
41
application {
42
// Define the main class for the application.
43
- mainClass = 'org.example.App'
+ mainClass = 'io.github.project516.NumberGuessingGame.Main'
44
app/src/main/java/io/github/project516/NumberGuessingGame/Main.java
@@ -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