DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

Java: Introduction

Start learning Java with a quick overview and Hello World.

Read time: 1 min Words: 45
My Progress

Java — Introduction

Overview

Java is a popular JVM language used in backend, Android, and enterprise systems.

Hello World

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

What you'll learn

  • How to run Java
  • Basic syntax style
  • Next steps (lessons & references)

Next

Open the Syntax & Cheat Sheet page for this language.