hush 0.1.4

Hush is a unix shell scripting language based on the Lua programming language
1
2
3
4
5
6
7
8
9
10
11
12
13
use super::value::Value;


/// Control flow in the language.
#[derive(Debug)]
pub enum Flow {
	/// Regular flow: follow everything in order.
	Regular(Value),
	/// Return from function.
	Return(Value),
	/// Break from loop.
	Break,
}