]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/rosetta-code/dice7/dice7.factor
Switch to https urls
[factor.git] / extra / rosetta-code / dice7 / dice7.factor
index cd508420344b3479b657ea1f968dfafd9de324e6..a41966ea8c2daadd9f81ba94aa3bb4847b9da51c 100644 (file)
@@ -1,10 +1,10 @@
 ! Copyright (C) 2015 Alexander Ilin, Doug Coleman, John Benediktsson.
-! See http://factorcode.org/license.txt for BSD license.
+! See https://factorcode.org/license.txt for BSD license.
 USING: assocs kernel math ranges math.statistics math.vectors
 prettyprint random sequences sorting ;
 IN: rosetta-code.dice7
 
-! http://rosettacode.org/wiki/Seven-sided_dice_from_five-sided_dice
+! https://rosettacode.org/wiki/Seven-sided_dice_from_five-sided_dice
 
 ! Given an equal-probability generator of one of the integers 1
 ! to 5 as dice5; create dice7 that generates a pseudo-random
@@ -18,7 +18,7 @@ IN: rosetta-code.dice7
 ! split the other 21 combinations into 7 groups of three, and
 ! return the group index from the rolls.
 
-! http://rosettacode.org/wiki/Simple_Random_Distribution_Checker
+! https://rosettacode.org/wiki/Simple_Random_Distribution_Checker
 
 ! Create a function to check that the random integers returned
 ! from a small-integer generator function have uniform