F(by) 2017. Michael Snoyman - What Makes Haskell Unique.

Поделиться
HTML-код
  • Опубликовано: 10 фев 2025

Комментарии • 14

  • @worldboy9684
    @worldboy9684 7 лет назад +18

    Excellent presentation on Haskell pros and cons from a dedicated user and skilled presenter. Highly recommended

  • @skepticmoderate5790
    @skepticmoderate5790 5 лет назад +1

    I learned a lot that I did not know! Very cool.

  • @0xOrganix
    @0xOrganix 6 лет назад +4

    great presentation, ty

  • @nbob6186
    @nbob6186 5 лет назад +3

    Great talk, thanks!

  • @sbditto85
    @sbditto85 7 лет назад +30

    Slide trouble until 1:28 ish

  • @HaskellMadrid
    @HaskellMadrid 7 лет назад +3

    Excellent !!!!

  • @srghma
    @srghma 6 лет назад +9

    Bartosz Milewski was there O_O

  • @safulkin
    @safulkin 5 лет назад

    13:32 sum [1..1000000]
    (N * N + N) / 2 is formula for sum of all numbers from 0 upto N.
    Why nobody use it? just ONE multiplication, ONE addition and ONE division by 2. NO loop, NO recursion, NO mutable variable. And, in case You don't know this formula, in Haskell it is just one expressive line of code
    sum [1..1000000]
    and ghci answer me 500000500000
    32:06 About sum of first million even numbers: all numbers is multiple of 2, lets move 2 out or sum. And this is 2 * sum [1..500000], lets plug this in formula, eliminate multiplication by 2 and division by 2, and result is 500000 * 500000 + 500000
    ONE multiplication and ONE addition.

    • @qandak
      @qandak 4 года назад +5

      I think purely (no other logic) summing of a natural sequence is a very rare case in real-life code and generally using for an idiomatic example.

  • @alexanderskusnov5119
    @alexanderskusnov5119 5 лет назад

    Здорово гутарит. Неужели наш человек?

  • @meridjal
    @meridjal 4 года назад +1

    poor quality video, don't bother.