Created
November 20, 2022 15:10
-
-
Save srang992/36e8acc70063955d949be94aa0aec6c7 to your computer and use it in GitHub Desktop.
This file contains 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
# Inserting an string at last | |
push!(my_list, "Kotlin") | |
println(my_list) | |
# Removing the last string | |
pop!(my_list) | |
println(my_list) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment