diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-08-03 14:41:53 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-08-03 14:41:53 -0400 |
commit | af8fa097905186e0d8ba257e4d70d63fe8901264 (patch) | |
tree | 647de7ddd01c750e9a80849b3cf79efddf32d4b2 /Putasci.f | |
download | moog-af8fa097905186e0d8ba257e4d70d63fe8901264.tar.gz |
Initial commit
Diffstat (limited to 'Putasci.f')
-rwxr-xr-x | Putasci.f | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Putasci.f b/Putasci.f new file mode 100755 index 0000000..d69f046 --- /dev/null +++ b/Putasci.f @@ -0,0 +1,28 @@ + + subroutine putasci (num,line) +c****************************************************************************** +c this routine prints out the characters contained in 'array' +c****************************************************************************** + + include 'Pstuff.com' + + istat = ivmove(line-1,1) + istat = ivcleol() + istat = ivmove(line-1,1) + write (errmess,1001) num + write (*,errmess) array + return + + +c*****format statements +1001 format ('(a',i2,'$)') + + + end + + + + + + + |