home.social

#haskel — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #haskel, aggregated by home.social.

fetched live
  1. Discussion of the expression model (easy to add data types vs. easy to add functions)
    here as Haskell algebraic data types vs OOP classes

    stackoverflow.com/questions/87

    #Haskel #OOP #ADT

  2. The friendship between Haskell and C. ~ Chris Martin (@chris__martin). #Haskel #FunctionalProgramming

  3. Un #Google #Doodle attribuisce a #JerryLawson il titolo di "Padre del gioco su #cartuccia".
    Così si fa partire la storia da metà, cancellando la creazione di #Kirschner e #Haskel, dipendenti di #ALPEX e di tutto quello che arrivò prima e dopo

    bufale.net/il-doodle-di-google

  4. Interesse in #linux (desktop draait linux sinds ca 1997), programmeren (op dit moment meestal #python, #haskel), databases (#oracle) en #IT in het algemeen.

    Speel #gitaar (#guitar), (modern) klassiek en af en toe jazzy/Zuid Amerikaans (Bijv. Antonio Lauro; de Venozolaanse walsen).

  5. @sir

    > Time for arguments. Functional programming has many useful applications, but functional programming *languages* are universally bad

    I assume you're drawing a distinction between multi-paradigm languages that support functional languages and "pure" functional languages.

    If so, you're not talking about a very large group of languages
    en.wikipedia.org/wiki/List_of_

    I basically read your toot as "#haskel is bad" :D

  6. (in fairness, though, the naive solution is even prettier/closer to English:

    fib :: Integer -> Integer
    fib 0 = 0
    fib 1 = 1
    fib n = fib (n-1) + fib (n-2)

    )

  7. @anathem According to internals.rust-lang.org/t/math, and all use '%' for the remainder operation, but and use it for true modulo