RosettaCodeData/Task/Variables/Maple/variables-2.maple

11 lines
197 B
Text
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
b;
f := proc()
local b := 3;
print("b is "||b);
end proc:
f();
print("b is "||b);
b
"b is 3"
"b is b"