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
- Host: GitHub
- URL: https://github.com/shravan20/demystify-java
- Owner: shravan20
- License: mit
- Created: 2021-03-02T03:14:53.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-02T18:03:29.000Z (over 3 years ago)
- Last Synced: 2024-04-18T11:23:41.723Z (over 1 year ago)
- Language: Java
- Size: 65.4 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.---