module Main where import Prelude import Effect.Console (log) data Data = One | More Data main = log (from (to 10000.0 One)) where to 0.0 a = a to n a = to (n - 1.0) (More a) from One = "Done" from (More d) = from d