A lightweight programming environment for desktop and mobile devices
example_pane = function(name, lines)
	local result = new_pane()
	result.example_name = name
	result.editor_state.lines = load_array(lines)
	Text.redraw_all(result.editor_state)
	return result
end