I’ve seen a couple posts in the top in the last 6 hours feed, and it seems like people are really up in arms about this functional programming stuff. Not really sure what it even is.

It looks like it’s people writing bad programming or something? Like a lot of extra stuff that is not necessary?

EDIT: sorry everyone, I’m not a programmer and I don’t know to much other than a little java and python. I guess I should have posted this in Explain Like I’m Five.

  • dfyx@lemmy.helios42.de
    link
    fedilink
    arrow-up
    4
    ·
    edit-2
    7 days ago

    And another example that shows off pattern matching:

    Procedural:

    int minimumElement(int[] array)
    {
        if(array.size() == 0)
        {
            return 0;
        }
    
        int minimum = array[1];
        for(int i = 1; i < array.size(); i++)
        {
            if(array[i] < minimum)
            {
                minimum = array[i];
            }
        }
        return minimum;
    }
    

    Functional (still, no specific language, just an example of what it might look like):

    int min(int a, int b) => a < b ? a : b;
    int minimumElement(int[] array) =>
        array match {
            [firstElement, ...rest] => min(firstElement, getMinimumElement(rest));
            [singleElement] =>singleElement;
            [] => 0;
        }
    
    • ieatpwns@lemmy.world
      link
      fedilink
      arrow-up
      4
      ·
      7 days ago

      To a layman like me it looks like procedural looks more like logical coding and the functional version looks more like a math problem