Skip to content

Instantly share code, notes, and snippets.

@kendhia
Created April 8, 2017 08:59
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 kendhia/f80fdda0c496d6efa0d26fd85efe417a to your computer and use it in GitHub Desktop.
Save kendhia/f80fdda0c496d6efa0d26fd85efe417a to your computer and use it in GitHub Desktop.
Public void addToCart(Item i){
if (SoppingCart == null)
ShoppingCart = new ArrayList<Item>();
ShoppingCart.add(i)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment