gtk2hsのインストールは
sudo apt install libghc-gtk-dev
先にGHCを単独でインストールしてしまうとgtk2hsを加えるときに非常に時間がかかります。
Gtk2hsを使う予定がなくてもいきなり入れてしまったほうが良い。
もちろんこれでGHCも使えるようになります。
Gtk2hsを使う予定がなくてもいきなり入れてしまったほうが良い。
もちろんこれでGHCも使えるようになります。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Graphics.UI.Gtk | |
main = do | |
initGUI | |
w <- windowNew | |
widgetShowAll w | |
w `on` unrealize $ mainQuit | |
mainGUI |
このコードを実行してウィンドウが表示されればインストールは成功です。
0 件のコメント:
コメントを投稿