diff options
author | Guillermo Ramos | 2019-04-23 21:42:49 +0200 |
---|---|---|
committer | Guillermo Ramos | 2019-04-23 21:42:49 +0200 |
commit | 14f80772cd91555d4b3862e57460b832e88e5b22 (patch) | |
tree | e929e94c75acb805d581c46925b4f0c79b0c39bf /perl/p1.pl | |
parent | 84ea53edf5431d382844da8fcaa47626c8e2b6b2 (diff) | |
download | euler-14f80772cd91555d4b3862e57460b832e88e5b22.tar.gz |
[perl] tabs -> spaces
Diffstat (limited to 'perl/p1.pl')
-rwxr-xr-x | perl/p1.pl | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -11,8 +11,8 @@ print "\n"; # Imperative my $sum; foreach my $i (1..999) { - if ($i % 3 == 0 || $i % 5 == 0) { - $sum += $i; - } + if ($i % 3 == 0 || $i % 5 == 0) { + $sum += $i; + } } print "$sum\n"; |