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