4 lines
73 B
Text
4 lines
73 B
Text
isNumeric(s)={
|
|
my(t=type(eval(s)));
|
|
t == "t_INT" || t == "T_REAL"
|
|
};
|