Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 363 Bytes

File metadata and controls

8 lines (6 loc) · 363 Bytes

DIT044 Labs

Introduction to Java for DIT044 Labs

How to run?

  1. Navigate to one of the directories in the terminal (you can use the cd command for that).
  2. Use javac *.java to compile all files in the directory, or javac Example1.java to compile one file.
  3. Use java Example1 to run Example1.java, and so on.