├── src └── Main.java ├── worksheet.md └── README.md /src/Main.java: -------------------------------------------------------------------------------- 1 | public class Main { 2 | public static void main(String[] args) throws Exception { 3 | System.out.println("Red vs. Blue"); 4 | } 5 | } -------------------------------------------------------------------------------- /worksheet.md: -------------------------------------------------------------------------------- 1 | # Task 1 2 | 3 | Clone this repository (well done!) 4 | 5 | # Task 2 6 | 7 | The repository you just cloned is a VSCode project, so lets work with it. It currently will print "Red vs. Blue" message to the console when run. 8 | 9 | You will find "Run" and "Debug" commands over the `main` method. Try them out. You can also trigger them with `F5` for "Debug" and `Ctrl-F5` for "Run" 10 | 11 | Modify the application so that instead it prints 12 | 13 | ~~~~~ 14 | COMP2000 2025 15 | ~~~~~ 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Welcome to COMP2000 - Object Oriented Programming Practices 2 | ## Session 2, 2025 3 | 4 | Please ensure that you follow the weekly updates in this repository 5 | 6 | You are free to clone this repository into your own hosted git environment, such as Github, Bitbucket, or Gitlab. 7 | 8 | *However*, please be aware that any repository containing your assignment code **must** be made private. Any repository with assignment code that is public available, or found to be shared with other students, will be considered a violation of the academic integrity policy. 9 | --------------------------------------------------------------------------------