introvoyz041's picture
Migrated from GitHub
a2a15a2 verified
raw
history blame contribute delete
154 Bytes
10 REM "Function definitions"
20 REM ""
100 DEF FNS(X)=X*X
200 READ N
210 PRINT "The square of",N," is: "; FN S(N)
220 PRINT "X is",X
230 END
300 DATA 10