RosettaCodeData/Task/Undefined-values/Oz/undefined-values.oz
2023-07-01 13:44:08 -04:00

12 lines
225 B
Text

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