We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5c4c8f commit 066f3f4Copy full SHA for 066f3f4
README.md
@@ -41,14 +41,6 @@ If you just want a random number:
41
final random = Xrandom();
42
43
quoteOfTheDay = quotes[ random.nextInt(quotes.length) ];
44
-```
45
-
46
-If you are solving a computational problem:
47
48
-``` dart
49
-final random = Qrandom(); // Q is for Quantifiable Quality
50
51
-feedMonteCarloSimulation(random);
52
```
53
54
If you want the same numbers each time:
@@ -61,6 +53,14 @@ test("no surprises ever", () {
61
expect(random.nextInt(100), 17);
62
expect(random.nextInt(100), 96);
63
55
});
56
+```
57
+
58
+If you are solving a computational problem:
59
60
+``` dart
+final random = Qrandom(); // Q is for Quantifiable Quality
+feedMonteCarloSimulation(random);
64
65
66
# Speed
0 commit comments