UNPKG

calcium-lang

Version:
13 lines (12 loc) 251 B
import Command from "./command"; import Environment from "../runtime/environment"; /** * terminate a program */ export default class End implements Command { /** * do nothing * @param env */ execute(env: Environment): void; }