class Samovar::Nested

def initialize(name, commands, key: :command, default: nil)

def initialize(name, commands, key: :command, default: nil)
	@name = name
	@commands = commands
	@key = key
	
	# This is the default name [of a command], not the default command:
	@default = default
end