Use module to add numbers in a file
1 2 13
$ perl -n -E 'use List::Util qw(sum); say sum(split)' src/examples/numbers_in_line.txt
16
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
1 2 13
$ perl -n -E 'use List::Util qw(sum); say sum(split)' src/examples/numbers_in_line.txt
16