- or download this
Something something = new Something();
something.setField1(value1);
something.setField2(value2);
something.setField3(value3);
something.doSomething();
- or download this
Something something = new Something(value1, value2, value3);
something.doSomething();
- or download this
# We need to ensure that the widget press is fully
# stopped before we disconnect the syrup tanks, because
# the nozzles can leak syrup for at least 30 seconds
# after the hoses are disconnected.
- or download this
if ($DEBUG) { print STDERR "Debug: some value"; }
- or download this
print STDERR "Debug: some value" if $DEBUG;
- or download this
foreach my $line (@lines) {
print STDERR "$line\n;"
}
- or download this
print STDERR join("\n", @lines), "\n";
- or download this
print STDERR Dumper \@lines;