/vqdr/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/vqdr/trunk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using VQDR.Expression;
using VQDR.Common.Utils;

int main (string[] args) {
    
    Dice d = new Dice ();
    
    d.roll ();
    
    print_ln (d.to_string ());
    
    print_ln ("foo bar baz %d, %f", 1, 13.37);
    
    return 0;
}