Thread use mit Schalter mit require formulieren
(5 answers)
Opened by bianca at 2016-12-01 10:02
Hab' ich das richtig umgesetzt?
Code (perl): (dl
)
1 2 3 require JSON::PP; JSON->import('-support_by_pp'); my %test = (1 => 'foo',2 => 'bar'); say "Ergebnis: ".JSON::PP->new->utf8->sort_by(sub {$JSON::PP::a <=> $JSON::PP::b})->escape_slash()->encode(\%test); 10 print "Hallo"
20 goto 10 |