RATFOR is a programming language created in 1976.
| #1033on PLDB | 50Years Old |
Ratfor (short for Rational Fortran) is a programming language implemented as a preprocessor for Fortran 66. It provided modern control structures, unavailable in Fortran 66, to replace GOTOs and statement numbers.. Read more on Wikipedia...
PRINT *, 'Hello, world!'
END
print *, 'Hello World'
endIF (A .GT. B) THEN
MAX = A
ELSE
MAX = B
ENDIF| Feature | Supported | Example | Token |
|---|---|---|---|
| Strings | ✓ | 'Hello world' | ' |
| Print() Debugging | ✓ |