Guest User

Untitled

a guest
May 21st, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.30 KB | None | 0 0
  1. // This is testprogram.java
  2.  
  3. package cardgame;
  4. public class TestProgram {
  5.     public static void main(String[] args) {
  6.         Deck d1 = new Deck();
  7.         d1.shuffle();
  8.         Card c1 = d1.dealACard();
  9.         Card c2 = d1.dealACard();
  10.         c1.getDetail();
  11.         c2.getDetail();
  12.     }
  13. }
Add Comment
Please, Sign In to add comment