RosettaCodeData/Task/Variables/Oz/variables-10.oz
2023-07-01 13:44:08 -04:00

10 lines
266 B
Text

declare
V = 42
in
{Wait V} %% explicitly wait for V to become determined
if {IsDet V} then %% check whether V is determined; not recommended
{Show determined}
elseif {IsFree V} then %% check whether V is free; not recommended
{Show free}
end