Skip to content

Instantly share code, notes, and snippets.

@lelandrichardson
Created August 27, 2020 21:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lelandrichardson/d6c3ab6b6d286b1b44fe7fe582065cc3 to your computer and use it in GitHub Desktop.
Save lelandrichardson/d6c3ab6b6d286b1b44fe7fe582065cc3 to your computer and use it in GitHub Desktop.
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