Overview
| Comment: | Changed format |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
2eacd155aa392936ccae454507f1e2d2 |
| User & Date: | gawthrop@users.sourceforge.net on 1998-07-25 14:04:14.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1998-07-25
| ||
| 14:59:11 | Initial revision check-in: 34ad400448 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 14:04:14 | Changed format check-in: 2eacd155aa user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 14:03:50 | Initial revision check-in: b5ff3d237b user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/p/mtt_write.p
from [3513fd7cdc]
to [9919ee12d1].
| ︙ | ︙ | |||
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
P.J. Gawthrop July 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
###############################################################
*}
VAR
i : INTEGER;
BEGIN
write(t);
| > > > | > > > | | | | 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;
|