forked from JavaTX/JavaCompilerCore
7 lines
55 B
Plaintext
7 lines
55 B
Plaintext
|
class Identity{
|
||
|
op = (x)->x;
|
||
|
|
||
|
m(){
|
||
|
op.apply(1);
|
||
|
}
|
||
|
}
|