forked from JavaTX/JavaCompilerCore
17 lines
223 B
Plaintext
17 lines
223 B
Plaintext
|
import java.lang.String;
|
||
|
import java.lang.Integer;
|
||
|
import java.lang.Double;
|
||
|
import java.util.Vector;
|
||
|
import java.lang.Boolean;
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
public class OLFun {
|
||
|
|
||
|
//f = x -> {return x + x;};
|
||
|
|
||
|
m(f, x) {
|
||
|
x = f.apply(x+x);
|
||
|
}
|
||
|
}
|