RATFOR is a programming language created in 1976.
#1014on PLDB | 48Years 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'
end
IF (A .GT. B) THEN
MAX = A
ELSE
MAX = B
ENDIF
Feature | Supported | Example | Token |
---|---|---|---|
Strings | ✓ | 'Hello world' | ' |
Print() Debugging | ✓ |