8 lines
66 B
Plaintext
Raw Normal View History

2016-11-09 16:59:08 +01:00
class Simple{
op = (i)->i;
public void main(){
op.apply(1);
}
}