Help for this page

Select Code to Download


  1. or download this
    srand($known_thing);
    # code relying on $known_thing
    srand(0);
    
  2. or download this
    sub with_srand {
        srand(shift);
    ...
    
    # later
    with_srand $known_thing, sub { ... }, args...;