Last active
May 21, 2016 04:48
-
-
Save callionica/56455e0167a1d4498a9d5fd6b576b5c0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Code generation! | |
let props = ["name", "value", "thing"] | |
for prop in props { | |
print([ | |
"if local.\(prop) != remote.\(prop) {", | |
" local.\(prop) = remote.\(prop)", | |
" changes[\(prop)Key] = remote.\(prop)", | |
"}", | |
"" | |
].joined(separator:"\n")) | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment