Code

some love to webslicer_export.py
[inkscape.git] / cxxtest / sample / mock / roll.cpp
1 #include <stdio.h>
2 #include "Dice.h"
4 int main()
5 {
6     Dice dice;
7     printf( "First roll: %u\n", dice.roll() );
8     printf( "Second roll: %u\n", dice.roll() );
9     
10     return 0;
11 }