Skip to content

Instantly share code, notes, and snippets.

@srang992
Created November 20, 2022 15:10
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 srang992/36e8acc70063955d949be94aa0aec6c7 to your computer and use it in GitHub Desktop.
Save srang992/36e8acc70063955d949be94aa0aec6c7 to your computer and use it in GitHub Desktop.
# 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