Skip to content

Instantly share code, notes, and snippets.

@MagicalMeghan
Last active April 13, 2020 18:36
Show Gist options
  • Save MagicalMeghan/d0f0e9588f0af7b17f36260643850a47 to your computer and use it in GitHub Desktop.
Save MagicalMeghan/d0f0e9588f0af7b17f36260643850a47 to your computer and use it in GitHub Desktop.
<!-- Copyright 2019 Google LLC.
SPDX-License-Identifier: Apache-2.0 -->
class Choir {
private val singers = mutableListOf<Singer>()
fun addSinger(singer: Singer) {
singers.add(singer)
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment