mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
12 lines
174 B
C++
12 lines
174 B
C++
#include <stdio.h>
|
|
#include "Dice.h"
|
|
|
|
int main()
|
|
{
|
|
Dice dice;
|
|
printf("First roll: %u\n", dice.roll());
|
|
printf("Second roll: %u\n", dice.roll());
|
|
|
|
return 0;
|
|
}
|