Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 1002 Bytes

File metadata and controls

40 lines (27 loc) · 1002 Bytes

☕ java-basics

A collection of basic Java examples and core concepts 📚
Designed for beginners who want clean, simple, and easy-to-understand Java code.

Java Build


📘 Topics Covered

This repository includes examples of:

  • 🌱 Classes, objects, and inheritance
  • 📦 Collections and the Stream API
  • 🔀 Threads and Lambda expressions
  • ✔️ Clean, beginner-friendly Java code structure

🧪 Example Code

public class Main {
    public static void main(String[] args) {
        System.out.println("Hello Java ☕");
    }
}

🎯 Goal

To help beginners understand:

  • The basics of Java OOP
  • How streams and collections work
  • Modern Java syntax (lambdas, functional style)
  • Project structure using simple examples

Perfect for students, new developers, or anyone brushing up on Java fundamentals.