Created
September 11, 2014 10:38
-
-
Save akanehara/2b76248308868a5e576e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
(* string * string -> string *) | |
let seiseki name_seiseki_pair = | |
match name_seiseki_pair with | |
(n, s) -> n ^ "さんの評価は" ^ s ^ "です" | |
let seiseki1 = seiseki ("カネハラ", "最悪") = "カネハラさんの評価は最悪です" | |
let seiseki2 = seiseki ("山田", "最高") = "山田さんの評価は最高です" | |
let seiseki3 = seiseki ("鈴木", "普通") = "鈴木さんの評価は普通です" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment