class Pry::Command::AmendLine

def insert_into_array(array, range)

def insert_into_array(array, range)
  insert_slot = Array(range).first
  array.insert(insert_slot, arg_string[1..-1] + "\n")
end