https://github.com/rashjredmund/java-sandbox
Java playground.
https://github.com/rashjredmund/java-sandbox
intellij java
Last synced: 3 months ago
JSON representation
Java playground.
- Host: GitHub
- URL: https://github.com/rashjredmund/java-sandbox
- Owner: RashJrEdmund
- Created: 2024-03-22T07:39:46.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-29T19:53:37.000Z (about 1 year ago)
- Last Synced: 2025-02-19T05:42:19.510Z (3 months ago)
- Topics: intellij, java
- Language: Java
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Java Commands to run and compile
## Do make sure you have Oracles' JDK downloaded and installed on your machine
visit https://oracle.com/java/technologies/downloads/ to grab a copy
## To compile file to .class
run
```bash
javac .java
```## To run compiled .class file
run
```bash
java .class
```or if that throws an error, simply run
```bash
java
```without the extension