Created
August 27, 2020 21:57
-
-
Save lelandrichardson/d6c3ab6b6d286b1b44fe7fe582065cc3 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
fun Google( | |
$composer: Composer, | |
number: Int | |
) { | |
if (number == $composer.next()) { | |
Address( | |
$composer, | |
number=number, | |
street="Amphitheatre Pkwy", | |
city="Mountain View", | |
state="CA" | |
zip="94043" | |
) | |
} else { | |
$composer.skip() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment