progs/hanoi.fun
changeset 742 b5b5583a3a08
parent 741 e66bd5c563eb
child 743 6acabeecdf75
--- a/progs/hanoi.fun	Mon Jul 27 11:02:48 2020 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,10 +0,0 @@
-// towers of hanoi in Fun
-
-let rec hanoi = fun n a b c ->
-  if n != 0 then (
-    hanoi (n - 1) a c b;
-    print_endline ("Move disk from pole " ^ (show a) ^ " to pole " ^ (show b));
-    hanoi (n - 1) c b a
-  ) else ();;
-
-impure $ hanoi 4 1 2 3;;
\ No newline at end of file