From: Alan P. <ap...@re...> - 2004-08-27 03:04:52
|
In article <cglscs$q72$1...@se...>, Jesse Guardiani wrote: > > let length node = > let rec loop cnt n = > if n = node then > cnt > else > loop (cnt + 1) n.next > in > loop 1 node.next Should this be n == node ? |