JavaCompilerCore/resources/bytecode/javFiles/OL.jav

17 lines
246 B
Plaintext
Raw Permalink Normal View History

2023-06-01 14:13:03 +00:00
import java.lang.Double;
import java.lang.String;
2023-06-01 14:13:03 +00:00
import java.lang.Long;
2024-03-14 13:37:55 +00:00
import java.lang.Integer;
2018-04-11 11:55:32 +00:00
2024-03-14 12:50:56 +00:00
public class OL {
2024-03-14 13:37:55 +00:00
public m (x) { return x + x; }
}
2024-03-14 13:37:55 +00:00
public class OLMain {
public main(x) {
var ol;
2023-06-01 14:13:03 +00:00
ol = new OL();
return ol.m(x);
}
}