Go to the first, previous, next, last section, table of contents.
TYPE and ACCEPT I/O Statements
g77 doesn't support the I/O statements TYPE and
ACCEPT.
These are common extensions that should be easy to support,
but also are fairly easy to work around in user code.
Generally, any `TYPE fmt,list' I/O statement can be replaced by `PRINT fmt,list'. And, any `ACCEPT fmt,list' statement can be replaced by `READ fmt,list'.
Go to the first, previous, next, last section, table of contents.