Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bartekpacia/fernflower-demo
sample project to test fernflower decompiler output
https://github.com/bartekpacia/fernflower-demo
Last synced: 22 days ago
JSON representation
sample project to test fernflower decompiler output
- Host: GitHub
- URL: https://github.com/bartekpacia/fernflower-demo
- Owner: bartekpacia
- Created: 2024-10-03T09:56:36.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2024-10-03T10:01:02.000Z (3 months ago)
- Last Synced: 2024-12-04T12:36:10.619Z (30 days ago)
- Language: Java
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### compile
```
javac -d build src/main/com/example/Main.java
```### see compiled bytecode
```
javap build.com.example.Main
```to see more:
```
javap -v -c build.com.example.Main
```