view dwtx/dwtxhelper/Random.d @ 175:9e7e1a8bc813

get a JThread for a thread that was just a Thread.
author Frank Benoit <benoit@tionex.de>
date Fri, 12 Sep 2008 09:44:36 +0200
parents 86617aa6b5dd
children
line wrap: on
line source

module dwtx.dwtxhelper.Random;

static import tango.math.random.Kiss;

class Random {
    tango.math.random.Kiss.Kiss kiss;

    public this(int seed ){
        kiss.seed(seed);
    }
    public bool  nextBoolean(){
        return kiss.toInt(2) is 0;
    }
}