11 lines
174 B
Java
11 lines
174 B
Java
package aud.exam.prep;
|
|
|
|
import java.util.Random;
|
|
|
|
public class Tests {
|
|
|
|
public static final int STEAM_SIZE = 50;
|
|
|
|
public static final Random RANDOM = new Random();
|
|
}
|