Browse Source

feat(HielloWorld): correct grammar

pull/2056/merge
davhojt 1 year ago
parent
commit
775322710a
No known key found for this signature in database
GPG Key ID: 29BFE853DB7E0677
  1. 15
      subjects/java/piscine/HelloWorld/README.md

15
subjects/java/piscine/HelloWorld/README.md

@ -2,11 +2,11 @@
### Setup
Install the JDK of Java 17 [here](https://www.oracle.com/java/technologies/javase/jdk17-archive-downloads.html)
Install the [Java 17 JDK](https://www.oracle.com/java/technologies/javase/jdk17-archive-downloads.html)
Create dedicated folder to create your files for this exercise.
The files for each exercise will be submitted in a single directory. For example, the directory for this exercise will be `HelloWorld`, and the path to the file will be `HelloWorld/HelloWorld.java`.
If you want to test your code, you need to compile your code :
You will need to compile your code if you intend to test it:
```shell
javac *.java -d build
@ -18,16 +18,17 @@ Then run the following command :
java -cp build ExerciseRunner
```
to get the output of your function in your console.
You can use any IDE or text editor, though IDEA IntelliJ or JetBrains are specially dedicated and recommended.
To edit your code, you can use any IDE or text editor, though IDEA IntelliJ or JetBrains are specially dedicated and recommended.
On Gitea, create a repository named `((ROOT))`, and push all Java files into a folder with a name matching the respective exercise.
On Gitea, create a repository named `((ROOT))`. Each of your exercises will have its own directory, with a name matching the exercise. That directory will contain all of the files for that exercise.
### Instructions
Create a file `HelloWorld.java`.
Create a file `HelloWorld.java` in a directory named `HelloWorld`.
Write a function `helloworld` that return the string 'Hello World !'.
Write a function `helloWorld` that returns the string 'Hello World !'.
### Expected Functions

Loading…
Cancel
Save