Bad Copy Syntax
Copy should be from right to left, but sometimes you type it wrong.
Start file
copyRtL(source, destination);
copyRtL("John Q. Public", nameVariable);
End file
copyRtL(destination, source);
copyRtL(nameVariable, "John Q. Public");
View Diff
1,2c1,2
< copyRtL(source, destination);
< copyRtL("John Q. Public", nameVariable);
---
> copyRtL(destination, source);
> copyRtL(nameVariable, "John Q. Public");
Solutions by @Scottaino:
Unlock 1 remaining solutions by signing in and submitting your own entry