class Nocode::Steps::Copy

Shallow-copy one register to another.

Public Instance Methods

perform() click to toggle source
# File lib/nocode/steps/copy.rb, line 9
def perform
  registers[to_register_option] = registers[from_register_option].dup
end