
29 Aug
2014
29 Aug
'14
4:04 p.m.
Hello,
Roger Mason
I have the following code from the Diagrams package tutorial:
{-# LANGUAGE NoMonomorphismRestriction #-}
import Diagrams.Prelude import Diagrams.Backend.SVG.CmdLine
main = mainWith (example :: Diagram B R2) example = circle 1 # fc blue # lw veryThick # lc purple # dashing [0.2,0.05] 0
I get the following error on compilation using GHC 7.6.3:
Found the problem: # dashing [0.2,0.05] 0 should read # dashingG [0.2,0.05] 0 Sorry for the noise. Roger