Add constructors and initializers
parent
b84650ee61
commit
2fec77db1f
@ -1,5 +1,8 @@
|
||||
package fr.celticinfo.lox
|
||||
|
||||
/**
|
||||
* The LoxCallable interface represents a callable entity in the Lox language.
|
||||
*/
|
||||
interface LoxCallable {
|
||||
fun call(interpreter: Interpreter, arguments: List<Any?>): Any?
|
||||
fun arity(): Int
|
||||
|
||||
Loading…
Reference in New Issue