JDK (Java Development Kit)
- The Java Compiler (javac)
- The Java Archiving Tool (jar)
- The Java Debugging Tool (jdb)
- A complete Java Runtime Environment (JRE), for running Java programs
IDE (Integrated Development Environments)
- Visual Studio Code
- IntelliJ IDEA
- Eclipse
- NetBeans
- glot.io
- replit
Contoh
Say Hello to the World
Hello.java
Compile & Run
- Compile
javac Hello.java - Run
java Hello
Displaying Strings
New Line
Special Characters
escape sequence
| \n | new line |
| \t | tab |
| ” | double quote |
| \ | backslash |