Skip to content

Instantly share code, notes, and snippets.

@jonpryor
Created January 14, 2013 20:10
Show Gist options
  • Save jonpryor/4532933 to your computer and use it in GitHub Desktop.
Save jonpryor/4532933 to your computer and use it in GitHub Desktop.
import java.util.Random;
class r {
public static void main(String[] args) {
Random x = new Random ();
for(int i=0; i<1000; i++) System.out.println(x.nextInt(2));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment