9 lines
134 B
C++
9 lines
134 B
C++
#include <iostream>
|
|
|
|
int main(int argc, const char** args) {
|
|
cards::deck d;
|
|
d.shuffle();
|
|
std::cout << d;
|
|
|
|
return 0;
|
|
}
|