hi,
Hallo
Einrückung nach Allman
foreach my $e(keys %ENV)
{
if($e eq 'OS')
{
say "$e => $ENV{$e}";
}
}
> >
> > Meine bevorzugte Variante.
>
> Hier die meine (wenn auch mit PHP statt Perl). [@Tom](https://forum.selfhtml.org/?t=217257&m=1492161): so find ich's noch ein wenig fluffiger.
>
> ~~~perl
# Einrückung nach WeißNichtWer
> ' Einrückung mit Tabs statt wie hier mit Leerzeichen
> foreach my $e (keys %ENV)
> {
> if ($e eq 'OS')
> {
> say "$e => $ENV{$e}";
> }
> }
Zumindest bei Javascript gibt es die Ansicht:
"The unit of indentation is four spaces. Use of tabs should be avoided because there still is not a standard for the placement of tabstops"
http://webreflection.blogspot.de/2010/02/jslint-bad-part.html
mfg
tami