Merge branch 'master' of dice:git/vm

This commit is contained in:
Joel Dice 2007-12-17 17:22:44 -07:00
commit c483ca40aa

View File

@ -0,0 +1,7 @@
package java.util;
public class Random {
public int nextInt() {
return (int)(Math.random()*Integer.MAX_VALUE);
}
}