aboutsummaryrefslogtreecommitdiff
path: root/Putasci.f
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2021-08-03 14:41:53 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2021-08-03 14:41:53 -0400
commitaf8fa097905186e0d8ba257e4d70d63fe8901264 (patch)
tree647de7ddd01c750e9a80849b3cf79efddf32d4b2 /Putasci.f
downloadmoog-af8fa097905186e0d8ba257e4d70d63fe8901264.tar.gz
Initial commit
Diffstat (limited to 'Putasci.f')
-rwxr-xr-xPutasci.f28
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
+
+
+
+
+
+
+