17 lines
246 B
Plaintext
Raw Normal View History

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