On 1/29/21 11:59 AM, Fred Cisin via cctalk wrote:
Early versions of BASIC had a keyword
"LET".??? LET X = 3?? is devoid of
most of the ambiguity, and LET 3 = X is much less likely to be
attempted. 'Course, changing the values of constants opens up some
strange possibilities!
SUBROUTINE FOO(X)
INTEGER X
X=15
RETURN
END
...
CALL FOO(10)
Lots of fun, there.
--Chuck