here is my code for my film Data Type and a database to hold it
data Film = String [String] Int [String]
deriving (Eq,Ord,Show,Read)
testDatabase :: [Film]
testDatabase = ["Casino Royale"
"Daniel Craig", "Eva Green", "Judi Dench"
2006
"Garry", "Dave", "Zoe", "Kevin", "Emma"
"Cowboys & Aliens"
"Harrison Ford", "Daniel Craig", "Olivia Wilde"
2011
"Bill", "Jo", "Garry", "Kevin", "Olga", "Liz"]
and i keep getting this error
parse error (possibly incorrect indentation or mismatched brackets)
No idea why its giving me that. ANy help guys?