• 1 Post
  • 33 Comments
Joined 1 year ago
cake
Cake day: June 16th, 2023

help-circle
  • Derin@lemmy.beru.cotoFoodPorn@lemmy.worldKatz's Deli pastrami
    link
    fedilink
    English
    arrow-up
    9
    ·
    edit-2
    2 days ago

    This place is known for both their price and portion size. I generally get two meals out of a single $30 sandwich.

    Regardless of how popular the place is with tourists, it is still a classic.

    And, bonus: if the line is too long you can just go to Russ and Daughters a block away and grab a pastrami lox bagel (see attached).













  • Nope, was added to dot Net after the fact. Normally you declare each type by hand, e.g.

    ArrayList<int> myCoolList = new ArrayList<int>();

    vs

    var myCoolList = new ArrayList<int>();

    The second example is why the keyword was added, but now imagine you have a function call returning an unknown type, and then things will start to get super funky.

    E.g.

    var myCoolBook = BuildBookData(input);

    …one step forward and then the same step back 😂 (disclaimer: I do actually like C#, though)