4 lines
144 B
Text
4 lines
144 B
Text
if isnumeric('-123.45e-2') then print, 'yes' else print, 'no'
|
|
; ==> yes
|
|
if isnumeric('picklejuice') then print, 'yes' else print, 'no'
|
|
; ==> no
|