aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/craftinginterpreters/lox/LoxCallable.java
blob: 4204c20c137960fae2e4c3574ce9c7f71ff76cdf (plain)
1
2
3
4
5
6
7
8
9
package com.craftinginterpreters.lox;

import java.util.List;

interface LoxCallable {
    int arity();

    Object call(Interpreter interpreter, List<Object> arguments);
}