package com.grack.adventure.kernel;

public enum InterpreterState {
	RUNNING,
	COMPLETED,
	WAITING_FOR_INPUT,
	WAITING_FOR_QUERY
}
