]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/rosetta-code/towers-of-hanoi/towers-of-hanoi.factor
Switch to https urls
[factor.git] / extra / rosetta-code / towers-of-hanoi / towers-of-hanoi.factor
index af2df716c1483a6fd46d8e80db6b3601b1da8c90..a598f1e75ff19c348ab1c314202cee7b67b3eb05 100644 (file)
@@ -1,9 +1,9 @@
 ! Copyright (c) 2012 Anonymous
-! See http://factorcode.org/license.txt for BSD license.
+! See https://factorcode.org/license.txt for BSD license.
 USING: formatting kernel math ;
 IN: rosetta-code.towers-of-hanoi
 
-! http://rosettacode.org/wiki/Towers_of_Hanoi
+! https://rosettacode.org/wiki/Towers_of_Hanoi
 
 ! In this task, the goal is to solve the Towers of Hanoi problem
 ! with recursion.