Skip to content

Instantly share code, notes, and snippets.

@toddgeist
Last active December 15, 2015 15:28
Show Gist options
  • Save toddgeist/5281557 to your computer and use it in GitHub Desktop.
Save toddgeist/5281557 to your computer and use it in GitHub Desktop.
Let Vars in practice
"$firstName=" & Quote(contact::firstName) & ";¶" &
"$flastNameName=" & Quote(contact::lastName) & ";¶" &
"$age=" & contact::Age & ";¶" &
"$birthDate=" & Quote(contact::birthDate) & ";¶"
@roqdocs
Copy link

roqdocs commented May 2, 2013

Am excited about what you are doing with modules!
Small correction me-thinks. Hope you don't mind...
NOT:
"$flastNameName=" & Quote(contact::lastName) & ";¶" &
BUT
"$lastName=" & Quote(contact::lastName) & ";¶" &

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment