mirror of
https://github.com/vishapoberon/oberonbyexample.git
synced 2026-04-05 21:02:25 +00:00
8 lines
100 B
Modula-2
8 lines
100 B
Modula-2
MODULE Day;
|
|
|
|
TYPE T* = RECORD END;
|
|
|
|
VAR sun*, mon*, tue*, wed*, thu*, fri*, sat* : T;
|
|
|
|
|
|
END Day.
|