Hacker News new | ask | show | jobs
by tasty_freeze 163 days ago
They one they named "baby cart" is something I have used to interpolate expressions into a string. Eg

    print "The sum is @{[1+2+3]}";
produces

    The sum is 6
instead of having to do:

    my $sum = 1+2+3;
    print "The sum is $sum";