namespace YesNt.Interpreter.Runtime;
///
/// The outcome of a single call,
/// or the aggregate result of /
/// .
///
public enum StepResult
{
///
/// A line was executed and more lines remain. Keep stepping to continue.
///
Continue,
///
/// The step or time budget was exhausted before the script finished.
/// is still ;
/// call any of the run methods again to resume.
///
Paused,
///
/// The script ran to completion (end-of-file, explicit exit, or error).
/// is now .
///
Finished,
}