Created
July 15, 2022 15:01
-
-
Save halilozel1903/392e8dc5a712c7ad5620f9e25fa2d5d6 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
val programmingLanguages = ArrayList<String>() | |
programmingLanguages.add("Kotlin") | |
programmingLanguages.add("Swift") | |
programmingLanguages.add("Java") | |
programmingLanguages.add("Objective-C") | |
val studentNames = ArrayList<String>() | |
println(studentNames.contains("Java")) | |
println(programmingLanguages.contains("Java")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment