~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to cxxtest/sample/mock/roll.cpp

  • Committer: mental
  • Date: 2006-01-16 02:36:01 UTC
  • Revision ID: mental@users.sourceforge.net-20060116023601-wkr0h7edl5veyudq
moving trunk for module inkscape

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <stdio.h>
 
2
#include "Dice.h"
 
3
 
 
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
}