Skip to content

Instantly share code, notes, and snippets.

@jasongorman
Created May 31, 2019 08:55
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 jasongorman/0c8ee0d91ff7e5a6d682a943f15270c7 to your computer and use it in GitHub Desktop.
Save jasongorman/0c8ee0d91ff7e5a6d682a943f15270c7 to your computer and use it in GitHub Desktop.
void addItem(String productCode, String productDescription, double price, int quantity) {
Object[] item = new Object[] {
productCode ,
productDescription ,
price ,
quantity
};
basket.add(item);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment