diff options
Diffstat (limited to 'web')
-rwxr-xr-x | web/index.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/index.txt b/web/index.txt index 207e425ae..99beb3743 100755 --- a/web/index.txt +++ b/web/index.txt @@ -33,7 +33,7 @@ from that model. # Prints the maximum integer from a list of integers # delimited by whitespace read from stdin. let tokens = stdin.readLine.split - echo tokens.each(parseInt).max, " is the maximum." + echo tokens.map(parseInt).max, " is the maximum." Nimrod is efficient |