Skip to content

Instantly share code, notes, and snippets.

@Deleplace
Created March 13, 2022 13:20
Show Gist options
  • Save Deleplace/9aedfdf1fe0a505bd315f0cd12ae8d85 to your computer and use it in GitHub Desktop.
Save Deleplace/9aedfdf1fe0a505bd315f0cd12ae8d85 to your computer and use it in GitHub Desktop.
Delete last element from list
main() {
var items = ["a", "b", "c"];
items.removeLast();
print(items);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment