2 comments

[ 5.7 ms ] story [ 16.0 ms ] thread

  import frege.prelude.Math (cos)
  cosines = iterate cos 1.0
  pairsOf xs = zip xs (tail xs)
  head [ x | (x,y) <- pairsOf cosines, x == y] 

  gave errors.
Module header is currently still mandatory.