エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Setting up a simple test with Cabal
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Setting up a simple test with Cabal
With the Cabal build and packaging system for Haskell, add a simple test program to your build wi... With the Cabal build and packaging system for Haskell, add a simple test program to your build with a couple of easy steps. First, add the following to your project's cabal file: Build-Type: Custom ... flag test description: Build test program. default: False Executable test hs-source-dirs: src, test other-modules: MyModule1, MyModule2 main-is: Main.hs build-depends: base if !flag(test) buildable: