Skip to content
Snippets Groups Projects
Commit e7f79fb4 authored by Juuso Rytilahti's avatar Juuso Rytilahti
Browse files

Fixed hyperlinks and some mistakes in examples

parent 7536514a
No related branches found
No related tags found
No related merge requests found
...@@ -12,4 +12,4 @@ Welcome to the exercises for programming tools. The exercises are located in thi ...@@ -12,4 +12,4 @@ Welcome to the exercises for programming tools. The exercises are located in thi
## Week 1 Exercises ## Week 1 Exercises
Start familiarising yourself with the topic of the week from the file [week 1](https://gitlab.utu.fi/TKO_2116/viikko-1/-/blob/main/viikko1.md) Start familiarising yourself with the topic of the week from the file [week 1](week_1.md)
...@@ -23,7 +23,7 @@ You can install the Java Development Kit (JDK) by downloading the package from e ...@@ -23,7 +23,7 @@ You can install the Java Development Kit (JDK) by downloading the package from e
* [Open JDK's website](https://jdk.java.net/) * [Open JDK's website](https://jdk.java.net/)
* [Adoptium Working Group's website](https://adoptium.net/) * [Adoptium Working Group's website](https://adoptium.net/)
We use Java version 11 in ViLLE, but you can install the latest version on your machine (version 19 has just been released). There are no significant differences in the features used in the course between these versions. We use Java version 11 in ViLLE, but you can install the latest version on your machine (version 21 has just been released). There are no significant differences in the features used in the course between these versions.
You can have multiple Java versions on your machine at the same time. This can sometimes cause problems with compiling certain programs - however, you can (usually) select the version separately in the Java development environment. You can have multiple Java versions on your machine at the same time. This can sometimes cause problems with compiling certain programs - however, you can (usually) select the version separately in the Java development environment.
...@@ -358,8 +358,8 @@ Write a Java program that works from the command line as shown in the examples b ...@@ -358,8 +358,8 @@ Write a Java program that works from the command line as shown in the examples b
``` ```
javac Longest.java javac Longest.java
java Longest one two java Longest one two three
Longest parameter: two Longest parameter: three
java Longest car moped snowmobile skis bicycle java Longest car moped snowmobile skis bicycle
Longest parameter: snowmobile Longest parameter: snowmobile
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment