RosettaCodeData/Task/Undefined-values/Oz/undefined-values.oz

13 lines
225 B
Text
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
declare X in
thread
if {IsFree X} then {System.showInfo "X is unbound."} end
{Wait X}
{System.showInfo "Now X is determined."}
end
{System.showInfo "Sleeping..."}
{Delay 1000}
{System.showInfo "Setting X."}
X = 42