SCM Repository
View of /sml/trunk/src/cm/main/say.sml
Parent Directory
|
Revision Log
Revision 321 -
(download)
(annotate)
Tue Jun 8 08:14:28 1999 UTC (23 years, 1 month ago) by blume
File size: 577 byte(s)
Tue Jun 8 08:14:28 1999 UTC (23 years, 1 month ago) by blume
File size: 577 byte(s)
PathConfig implemented
(* * Output of feedback and diagnostics. * * Copyright (c) 1999 by Lucent Technologies, Bell Laboratories. * * author: Matthias Blume (blume@cs.princeton.edu) *) signature SAY = sig val say: string list -> unit val vsay: string list -> unit val dsay: string list -> unit end structure Say :> SAY = struct structure Print = GenericVC.Control.Print fun say l = (Print.say (concat l); Print.flush ()) fun csay cnd l = if EnvConfig.getSet cnd NONE then say l else () val vsay = csay StdConfig.verbose val dsay = csay StdConfig.debug end
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |