package fr.celticinfo.lox /** * The LoxCallable interface represents a callable entity in the Lox language. */ interface LoxCallable { fun call(interpreter: Interpreter, arguments: List): Any? fun arity(): Int }