summaryrefslogtreecommitdiff
path: root/static/v10/man1/ratfor.1
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-26 16:38:00 -0400
committerJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-26 16:38:00 -0400
commit97d5c458cfa039d857301e1ca7d5af3beb37131d (patch)
treeb460cd850d0537eb71806ba30358840377b27688 /static/v10/man1/ratfor.1
parentb89dc2331a50c63f8b33272a5c4c61ab98abdaa3 (diff)
build: Better Build System
Diffstat (limited to 'static/v10/man1/ratfor.1')
-rw-r--r--static/v10/man1/ratfor.170
1 files changed, 0 insertions, 70 deletions
diff --git a/static/v10/man1/ratfor.1 b/static/v10/man1/ratfor.1
deleted file mode 100644
index c4900282..00000000
--- a/static/v10/man1/ratfor.1
+++ /dev/null
@@ -1,70 +0,0 @@
-.TH RATFOR 1
-.SH NAME
-ratfor \- rational Fortran dialect
-.SH SYNOPSIS
-.B ratfor
-[
-.I option ...
-]
-[
-.I filename ...
-]
-.SH DESCRIPTION
-.I Ratfor
-converts a rational dialect of Fortran into ordinary irrational Fortran.
-.I Ratfor
-provides control flow constructs essentially identical to those in C:
-.TP
-statement grouping:
-.nf
-{ statement; statement; statement }
-.TP
-decision-making:
-if (condition) statement [ else statement ]
-.br
-switch (integer value) {
- case integer: statement
- ...
- [ default: ] statement
-}
-.TP
-loops:
-while (condition) statement
-for (expression; condition; expression) statement
-do limits statement
-repeat statement [ until (condition) ]
-break
-next
-.LP
-and some syntactic sugar to make programs easier to read and write:
-.TP
-free form input:
-multiple statements/line; automatic continuation
-.TP
-comments:
-# this is a comment
-.TP
-translation of relationals:
->, >=, etc., become .GT., .GE., etc.
-.TP
-return (expression)
-returns expression to caller from function
-.TP
-define:
-define name replacement
-.TP
-include:
-include filename
-.PP
-.fi
-.I Ratfor
-is best used with
-.IR f77 (1).
-.SH "SEE ALSO"
-.IR efl (1),
-.IR f77 (1),
-.IR struct (1)
-.br
-B. W. Kernighan and P. J. Plauger,
-.IR "Software Tools" ,
-Addison-Wesley, 1976.