SCM Repository
View of /sml/trunk/src/compiler/TopLevel/main/version.sml
Parent Directory
|
Revision Log
Revision 1215 -
(download)
(annotate)
Tue May 21 20:05:42 2002 UTC (18 years, 8 months ago) by blume
File size: 752 byte(s)
Tue May 21 20:05:42 2002 UTC (18 years, 8 months ago) by blume
File size: 752 byte(s)
working version 110.40
(* COPYRIGHT (c) 1996 Bell Laboratories *) (* version.sml *) structure CompilerVersion : sig val version : { system : string, (* the system title *) version_id : int list, (* the version number *) date : string (* date of creation *) } val banner : string end = struct val version = { system = "Standard ML of New Jersey ", version_id = [110, 40], date = "May 21, 2002" } fun f ([], l) = l | f ([x : int], l) = (Int.toString x)::l | f (x::r, l) = (Int.toString x) :: "." :: f(r, l) val banner = concat ( #system version :: "v" :: f (#version_id version, [" [FLINT v1.5], ", #date version])) end structure Version = CompilerVersion
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |