RosettaCodeData/Task/Scope-modifiers/Oberon-07/scope-modifiers-2.oberon
2026-04-30 12:34:36 -04:00

6 lines
136 B
Text

MODULE U1;
IMPORT D1;
VAR v1, v2 : INTEGER;
BEGIN
(* as well as v1 and v2, D1.x and D1.P1 are visible here *)
END U1.