Determine if a string is numeric: Difference between revisions

Content added Content deleted
imported>Brie
(Add Nu)
m (→‎{{header|Wren}}: Minor tidy)
Line 5,116: Line 5,116:
{{libheader|Wren-fmt}}
{{libheader|Wren-fmt}}
Wren's Num class already has a static method which does what this task requires.
Wren's Num class already has a static method which does what this task requires.
<syntaxhighlight lang="ecmascript">import "/fmt" for Fmt
<syntaxhighlight lang="wren">import "./fmt" for Fmt


System.print("Are these strings numeric?")
System.print("Are these strings numeric?")