Last active
April 13, 2020 18:36
-
-
Save MagicalMeghan/d0f0e9588f0af7b17f36260643850a47 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
<!-- 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