Data update

This commit is contained in:
Ingy döt Net 2023-09-16 17:28:03 -07:00
parent 5af6d93694
commit 796d366b97
455 changed files with 7413 additions and 1900 deletions

View file

@ -1,14 +1,13 @@
proc is_numeric a$ . r .
h = number a$
r = 1 - error
# because every variable must be used
h = h
func is_numeric a$ .
h = number a$
# because every variable must be used
h = h
return 1 - error
.
for s$ in [ "abc" "21a" "1234" "-13" "7.65" ]
call is_numeric s$ r
if r = 1
print s$ & " is numeric"
else
print s$ & " is not numeric"
.
if is_numeric s$ = 1
print s$ & " is numeric"
else
print s$ & " is not numeric"
.
.