Subversion Repositories distributed

Rev

Rev 14 | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. package de.viathinksoft.immortal.gen2;
  2.  
  3. import java.io.IOException;
  4. import java.math.BigInteger;
  5.  
  6.  
  7.  
  8. public class Gen2Test {
  9.  
  10.         public static void main(String[] args) throws IOException {
  11.                 String val = "" + Integer.MAX_VALUE;
  12.                 ImmortalWriter.writeImmortable(ImmortalBase.M5,
  13.                                 new BigInteger(val), "gen2_m5_" + val + ".txt", true);
  14.         }
  15.  
  16. }
  17.