1
Agda(バージョン2.3.2.2)と標準ライブラリ(バージョン0.7)がインストールされました。
標準ライブラリをインポートしないプログラムを読み込むことができます。
例えば、私は標準ライブラリをロードすると、私はエラーの下になったAgda標準ライブラリの読み込み
open import Data.Bool
data Bool : Set where
true : Bool
false : Bool
not : Bool -> Bool
not false = true
not true = false
ロードすることはできません、しかし
data Bool : Set where
true : Bool
false : Bool
not : Bool -> Bool
not false = true
not true = false
ロードすることができます。
/Users/my_name/.cabal/share/Agda-2.3.2.2/lib-0.7/src/Level.agda:27,1-32
Duplicate binding for built-in thing LEVEL, previous binding to.Agda.Primitive.Level
when checking the pragma BUILTIN LEVEL Level
エラーを解決する方法はありますか?
Agdaのバージョンは2.3.2.2ではありませんでした!ごめんなさい、ありがとう!私はライブラリをロードすることができました! – mmsss