package serene.simple; public class FunctionNode extends Node { @Override public Object eval(BaseScope scope) { return this; } @Override public String toString() { return "Function@" + this; } }