package net.ciklum.icfpc11.domain.greenspoon10 /** * blabla * @author vic */ @Typed class Identity extends Function { static Function IDENTITY = new Identity() @Override Function apply(Function arg) { super.apply(arg) return arg } String toString() { "I" } }