moved files to new subdirectory

This commit is contained in:
norayr 2017-05-23 16:43:00 +04:00
parent 447b87d2ed
commit 512257bacf
3 changed files with 0 additions and 0 deletions

View file

@ -1,22 +0,0 @@
MODULE test;
IMPORT Days, Out;
VAR today, yesterday, tomorrow: Days.Day;
BEGIN
today := Days.mon; (*init*)
yesterday := Days.Prev(today);
IF yesterday = Days.sun
THEN
Out.String("it works!"); Out.Ln
END;
tomorrow := Days.Next(today);
IF tomorrow = Days.tue
THEN
Out.String("it works!"); Out.Ln
END;
END test.