Skip to content

Instantly share code, notes, and snippets.

@chrisvest
Created January 7, 2017 16:26
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 chrisvest/ddc2c6b546c5d8d224c684ece58841e7 to your computer and use it in GitHub Desktop.
Save chrisvest/ddc2c6b546c5d8d224c684ece58841e7 to your computer and use it in GitHub Desktop.
void push( Object value ) {
Node node = new Node( value );
node.next = stack.getAndSet( node );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment