YouTip LogoYouTip

Java Tutorial - Getting Started

Hello World

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

Variables

int age = 25;
double price = 19.99;
String name = "Alice";
boolean active = true;

Summary

  • Java is compiled and runs on JVM
  • Everything must be inside a class
← Java OOP - Classes and ObjectsTypeScript Types and Generics β†’