Fork of the Fernflower decompiler
fernflower/testData/bulk/pkg/Main.java

12 lines
227 B

package pkg;
import pkg.res.Loader;
public class Main {
public static void main(String[] args) {
Loader loader = new Loader();
String resource = loader.getResource();
System.out.println(resource);
}
}