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

8 lines
178 B
Text

if {IsEven 42} then
{System.showInfo "Here, LocalVar is not visible."}
local
LocalVar = "Here, LocalVar IS visible"
in
{System.showInfo LocalVar}
end
end