計算機科学のブログ

型の紹介 型の基礎 関数の型 div関数

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

コード

lesson/app/Main.hs

module Main where

import Lib (halve)

calcHalve :: Int -> String
calcHalve x =
  mconcat
    [ show x,
      " `div` 2 -> ",
      show $ halve x
    ]

main :: IO ()
main = do
  mapM_ putStrLn $ calcHalve <$> [-4 .. 5]

lesson/src/Lib.hs

module Lib
  ( halve,
  )
where

halve :: Int -> Int
halve n = n `div` 2

入出力結果(Terminal, Zsh)

% stack build
lesson> build (lib + exe)
Preprocessing library for lesson-0.1.0.0..
Building library for lesson-0.1.0.0..
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
-4 `div` 2 -> -2
-3 `div` 2 -> -2
-2 `div` 2 -> -1
-1 `div` 2 -> -1
0 `div` 2 -> 0
1 `div` 2 -> 0
2 `div` 2 -> 1
3 `div` 2 -> 1
4 `div` 2 -> 2
5 `div` 2 -> 2
%