Report abuse

def act
  handle_edge_case and return
  natural_step_1
  natural_step_2
  natural_step_3
end

def handle_edge_case
  if edge_case?
    edge_case_step_1
    edge_case_step_2  # footnote!
  end
end