Overview
Comment:Spaces between numbers
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | origin/master | trunk
Files: files | file ages | folders
SHA3-256: 75b1f72e26d5b07c348e48cf2195581276fbd788165bdc7b3a08087396d33d42
User & Date: gawthrop@users.sourceforge.net on 1998-07-25 20:41:38.000
Other Links: branch diff | manifest | tags
Context
1998-07-25
20:42:30
No assignements for switch either check-in: aa3e8a21c0 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
20:41:38
Spaces between numbers check-in: 75b1f72e26 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
20:40:35
All vars in lower case now check-in: 8a55c56fc8 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
Changes
12
13
14
15
16
17
18



19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
      P.J. Gawthrop July 1998

###############################################################
## Version control history
###############################################################
## $Id$
## $Log$



## Revision 1.1  1998/07/25 09:47:25  peterg
## Initial revision
##
###############################################################


*}
 
VAR
   i : INTEGER;
   
BEGIN
   write(t);
   FOR i := 1 TO ny DO
      write(y[i]);
   write(" # ");

   write(t);
   FOR i := 1 TO nx DO
      write(x[i]);
   writeln;
END;
   







>
>
>












|

|




|



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
      P.J. Gawthrop July 1998

###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.2  1998/07/25 14:04:14  peterg
## Changed format
##
## Revision 1.1  1998/07/25 09:47:25  peterg
## Initial revision
##
###############################################################


*}
 
VAR
   i : INTEGER;
   
BEGIN
   write(t," ");
   FOR i := 1 TO ny DO
      write(y[i]," ");
   write(" # ");

   write(t);
   FOR i := 1 TO nx DO
      write(x[i]," ");
   writeln;
END;
   

MTT: Model Transformation Tools
GitHub | SourceHut | Sourceforge | Fossil RSS ]