Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 756 Bytes

File metadata and controls

35 lines (25 loc) · 756 Bytes

java_beginners_2_homework

Learning Objectives

This is educational material. Key goals:

  • Study the source code and understand the patterns used
  • Complete exercises and homework assignments
  • Experiment with modifications to deepen understanding

Prerequisites

  • JDK 8+

Build & Run

# See project files for build instructions

Development Guidelines

Code Style

  • Follow standard Java conventions
  • Keep code clean and well-organized
  • Use meaningful variable and method names

Git Workflow

  • Write clear, descriptive commit messages
  • One logical change per commit
  • Test before committing

Testing

  • Write tests for new functionality
  • Run the full test suite before pushing
  • Keep tests focused and independent