UNPKG

thaw-interpreter

Version:

Programming language interpreters, including LISP, Scheme, and Prolog.

6 lines 206 B
export interface IInterpreter { languageName: string; initialize(): void; evaluateFromString(inputString: string, catchExceptions?: boolean): string; } //# sourceMappingURL=iinterpreter.d.ts.map