Skip to content

Instantly share code, notes, and snippets.

@Deleplace
Created March 24, 2022 20:41
Show Gist options
  • Save Deleplace/428fabd6a7e095e455fb8aaba8f3e5e6 to your computer and use it in GitHub Desktop.
Save Deleplace/428fabd6a7e095e455fb8aaba8f3e5e6 to your computer and use it in GitHub Desktop.
Create a stack
void main() {
var x = 42;
var s = [];
s.add(x);
var y = s.removeLast();
print(s);
print(y);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment