1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Windows Haskell でのReadlineの代わり

Last updated at Posted at 2013-06-15

Readline

import System.Console.Readline

とするために、普通はcabal install readlineとしてreadlineをインストールするようですが、Windowsではエラーが出て(というかヘッダファイルがなくて)インストールできませんでした。
なので以下を代替として使用します。

Haskeline

Windowsでもcabal install haskelineでインストールが出来ます。

import System.Console.Haskeline

cmd.exeからインストールする際に文字コード関連のエラーが出たのですが、解決方法を探すのも面倒なためCygwinからインストールしました。
しかしどうやらプロンプト上でset LANG=Cとすると上手くいくようです(未確認)。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?