Mercurial > urweb
diff lib/basis.urs @ 436:024478c34f4d
time type
author | Adam Chlipala <adamc@hcoop.net> |
---|---|
date | Thu, 30 Oct 2008 14:36:48 -0400 |
parents | 0ce90d4d9ae7 |
children | 1a4c1b5f4d8f |
line wrap: on
line diff
--- a/lib/basis.urs Tue Oct 28 15:05:16 2008 -0400 +++ b/lib/basis.urs Thu Oct 30 14:36:48 2008 -0400 @@ -1,6 +1,7 @@ type int type float type string +type time type unit = {} @@ -52,6 +53,7 @@ val show_float : show float val show_string : show string val show_bool : show bool +val show_time : show time class read val read : t ::: Type -> read t -> string -> option t @@ -61,6 +63,7 @@ val read_float : read float val read_string : read string val read_bool : read bool +val read_time : read time (** SQL *)