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