This commit is contained in:
Martin Plümicke 2016-09-30 12:48:41 +02:00
parent a5c34896ba
commit a33ce04734
2 changed files with 10 additions and 3 deletions

View File

@ -1,4 +1,7 @@
class Identity{
op = (x)->x;
m(){
op.apply(1);
}
}

View File

@ -1,4 +1,8 @@
class Id{
op = (x)->x;
}
class Id {
op = (x) -> x;
m(){
op.apply(1);
}
}