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

11 lines
197 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04: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"