An open API service indexing awesome lists of open source software.

https://github.com/shravan20/demystify-java

Learning concepts of Java
https://github.com/shravan20/demystify-java

Last synced: 6 months ago
JSON representation

Learning concepts of Java

Awesome Lists containing this project

README

          

# Demystify Java
Learning concepts of Java

#### To run a Java Program
- Open a command prompt window and go to the directory where you saved the java program (Simple.java).
- Type `javac Simple.java` and press enter to compile your code.
- Now, type `java Simple` to run your program.
- You will be able to see the result printed on the window.

---