Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-09-29 23:00:13 -0700 (Thu, 29 Sep 2005)
Revision: 7806
Log message:
Removed export values. MetaPRL compiles without
any changes to OMakefiles except one:
- Instead of
stdout = $(fopen ...)
you must use
Pervasives.stdout = $(fopen ...)
I'll think about whether this can/should be changed.
On another topic, with mutable variables, we no
longer need export sections, but I'm not sure
whether or not this is necessary.
export
section
X = 1
println($"X = $(X)") # prints "X = 1"