in progress (special coloring is still true)
[jalview.git] / forester / java / src / org / forester / development / RandomThing.java
1
2 package org.forester.development;
3
4 import java.util.Random;
5
6 public class RandomThing {
7
8     public static void main( final String[] args ) {
9         final Random rg = new Random();
10         for( int i = 0; i < 200; i++ ) {
11             for( int j = 0; j < 30; j++ ) {
12                 System.out.print( "\t" + rg.nextFloat() );
13             }
14             System.out.println();
15         }
16     }
17 }