Overview
| Comment: | Put missing space after 2nd t |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
96c928f1cbc164041705579087698432 |
| User & Date: | gawthrop@users.sourceforge.net on 1998-11-26 13:31:30.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
1998-11-30
| ||
| 10:47:53 | Added extra a_a and a_b aliases check-in: cc40783ea6 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
1998-11-26
| ||
| 13:31:30 | Put missing space after 2nd t check-in: 96c928f1cb user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
| 10:32:34 | Include subs.r check-in: 87b1bbd5ac user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/trans/p/mtt_write.p
from [10403817f8]
to [d53e1154dd].
| ︙ | ︙ | |||
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 |
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(" # ");
| > > > | | 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 45 46 47 |
P.J. Gawthrop July 1998
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.3 1998/07/25 20:41:38 peterg
## Spaces between numbers
##
## 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;
|