Java fundamentals through coding exercises
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
371 B

4 years ago
  1. Kirjoita luokka HelloWorld ja siihen main-metodi, joka tulostaa tekstin Hello "world". Huomaa, että sanan world ympärille tulee tulostaa lainausmerkit.
  2. ```
  3. Example output:
  4. Hello "world"
  5. ```
  6. --------------------
  7. **HelloWorld.java**
  8. ```
  9. public class HelloWorld {
  10. public static void main(String[] args) {
  11. System.out.println("Hello \"world\"");
  12. }
  13. }
  14. ```