Skip to content

Commit 066f3f4

Browse files
committed
docs
1 parent b5c4c8f commit 066f3f4

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,6 @@ If you just want a random number:
4141
final random = Xrandom();
4242
4343
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);
5244
```
5345

5446
If you want the same numbers each time:
@@ -61,6 +53,14 @@ test("no surprises ever", () {
6153
expect(random.nextInt(100), 17);
6254
expect(random.nextInt(100), 96);
6355
});
56+
```
57+
58+
If you are solving a computational problem:
59+
60+
``` dart
61+
final random = Qrandom(); // Q is for Quantifiable Quality
62+
63+
feedMonteCarloSimulation(random);
6464
```
6565

6666
# Speed

0 commit comments

Comments
 (0)