# File lib/luck/display.rb, line 23 def pane name, *args, &blck if args.any? && args.first.is_a?(Pane) @panes[name] = args.first else @panes[name] = Pane.new(self, *args, &blck) end end