「haskell メモ」の編集履歴(バックアップ)一覧に戻る

haskell メモ - (2007/01/17 (水) 21:17:26) の編集履歴(バックアップ)


hello

module Main where

main = putStr "hello"


実行結果:

hello

show


module Main where

main = putStr (show 111)

実行結果:

111