bwukki

Untitled

Apr 17th, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. //main.cpp
  2. #include <iostream>
  3. #include "Card.h"
  4. #include "DeckOfCards.h"
  5.  
  6. using namespace std;
  7.  
  8. void test() {
  9.     Card x{Ace, Diamonds};
  10.     cout << x.toString();
  11. }
  12.  
  13. int main()
  14. {
  15.     cout << "Hello world!" << endl;
  16.     test();
  17.     return 0;
  18. }
Add Comment
Please, Sign In to add comment