1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-13 18:24:39 +02:00

Merge pull request #3494 from haritonch/patch-1

[SML/en] Added a comment to better demonstrate custom datatypes
This commit is contained in:
Divay Prakash
2019-03-21 00:55:40 +05:30
committed by GitHub

View File

@@ -273,6 +273,9 @@ datatype temp =
C of real C of real
| F of real | F of real
(* Declaring a new C temp value...
val t: temp = C 45.0 *)
fun temp_to_f t = fun temp_to_f t =
case t of case t of
C x => x * (9.0 / 5.0) + 32.0 C x => x * (9.0 / 5.0) + 32.0