RATFOR is a programming language created in 1976.
#500on PLDB | 47Years Old | 126Users |
0Books | 0Papers |
Try now: Riju
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 | Token | Example |
---|---|---|---|
Strings | ✓ | ' | 'Hello world' |
Print() Debugging | ✓ |