在过去的几个月里,我一直在学习 Haskell,并试图按照这个关于 Haskell + Persistent 的教程进行学习:
https://www.yesodweb.com/book/persistent#persistent_code_generation
module Main where
{-# LANGUAGE GADTs #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE QuasiQuotes #-}
{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE TypeFamilies #-}
import Database.Persist
import Database.Persist.TH
import Database.Persist.Sqlite
import Control.Monad.IO.Class (liftIO)
mkPersist sqlSettings [persistLowerCase|
Person
name String
age Int
deriving Show
|]
我之前没有遇到过这种语法(他们在教程中谈论'QuasiQuotes',所以我猜这就是它),但我认为我直接从教程中获取了代码,它应该编译。但是,它不会,我收到以下错误:
/home/will/programming/learn-haskell/postgres-example/app/Main.hs:15:1: error:
parse error (possibly incorrect indentation or mismatched brackets)
|
15 | Person
| ^
-- While building package postgres-example-0.1.0.0 using:
/home/will/.stack/setup-exe-cache/x86_64-linux-tinfo6/Cabal-simple_mPHDZzAJ_3.0.1.0_ghc-8.8.4 --builddir=.stack-work/dist/x86_64-linux-tinfo6/Cabal-3.0.1.0 build exe:simple --ghc-options " -fdiagnostics-color=always"
Process exited with code: ExitFailure 1
这是我的 cabal 文件中的配置:
name: postgres-example
version: 0.1.0.0
synopsis: An example of using Haskell and PostGres with persistent
description: Please see README.md
license: BSD3
license-file: LICENSE
author: Will Taylor
copyright: 2020, Will Taylor
category: Web
build-type: Simple
cabal-version: >=1.10
executable simple
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, persistent
, persistent-template
, persistent-postgresql
, monad-logger
default-language: Haskell2010
如果有人可以帮助我,那将是惊人的。