forked from JavaTX/JavaCompilerCore
modified
This commit is contained in:
parent
a5c34896ba
commit
a33ce04734
@ -1,4 +1,7 @@
|
|||||||
class Identity{
|
class Identity{
|
||||||
op = (x)->x;
|
op = (x)->x;
|
||||||
|
|
||||||
|
m(){
|
||||||
|
op.apply(1);
|
||||||
|
}
|
||||||
}
|
}
|
@ -1,4 +1,8 @@
|
|||||||
|
|
||||||
class Id{
|
class Id {
|
||||||
op = (x)->x;
|
op = (x) -> x;
|
||||||
}
|
|
||||||
|
m(){
|
||||||
|
op.apply(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user