Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Examples

Example 1

Code Block
languagejs
wret = isAlpha("foobar");
print(wret);

Print true

Example 2

Code Block
languagejs
wret = isAlpha("aaa2345f.ff");
print(wret);

Print false

Example 3

Code Block
languagejs
wret = isAlpha("Once upon a time... !");
print(wret);

...