計算機科学のブログ

型の紹介 型の基礎 型変数 map関数の型

入門Haskellプログラミング (Will Kurt(著)、株式会社クイープ(監修、翻訳)、翔泳社)のUNIT2(型の紹介)、LESSON 11(型の基礎)、11.3(型変数)、複数の引数を持つ関数、クイックチェック 11-4の解答を求めてみる。

コード

lesson/app/Main.hs

module Main where

import Lib (myMap)

main :: IO ()
main = do
  print $ myMap show [1 .. 4]

lesson/src/Lib.hs

module Lib
  ( myMap,
  )
where

myMap :: (Num a) => (a -> String) -> [a] -> [String]
myMap = map

入出力結果(Terminal, Zsh)

% stack build
lesson> build (lib + exe)
Preprocessing library for lesson-0.1.0.0..
Building library for lesson-0.1.0.0..
[2 of 2] Compiling Lib
Preprocessing executable 'lesson-exe' for lesson-0.1.0.0..
Building executable 'lesson-exe' for lesson-0.1.0.0..
[2 of 2] Compiling Main
Linking .stack-work/dist/x86_64-osx/Cabal-3.4.1.0/build/lesson-exe/lesson-exe ...
lesson> copy/register
Installing library in /Users/…/lesson/.stack-work/install/x86_64-osx/7091f650d3dd5d7cbe41c419933d22622a88b13592d474a4616bbcad00d1cf98/9.0.2/lib/x86_64-osx-ghc-9.0.2/lesson-0.1.0.0-CIOIkpTgcfQI9akDJnwnSd
Installing executable lesson-exe in /Users/…/lesson/.stack-work/install/x86_64-osx/7091f650d3dd5d7cbe41c419933d22622a88b13592d474a4616bbcad00d1cf98/9.0.2/bin
Registering library for lesson-0.1.0.0..
% stack exec lesson-exe
["1","2","3","4"]
%