Bad Copy Syntax

Copy should be from right to left, but sometimes you type it wrong.

Input

   copyRtL(source, destination);
   copyRtL("John Q. Public", nameVariable);

Output

   copyRtL(destination, source);
   copyRtL(nameVariable, "John Q. Public");