An Introduction to Erlang (for Python programmers)

Поділитися
Вставка
  • Опубліковано 26 гру 2024

КОМЕНТАРІ •

  • @cferrier1988
    @cferrier1988 9 років тому +2

    As elementary as this talk is I find it to be a wonderful bridge for modern programmers to start to understand the Erlang code they might have inherited. One of my specialities these days is checking an old Erlang codebase and seeing if its viable to port it to something modern developers enjoy, like Node.JS or Go. A lot of the time I end up explaining and advocating continued use of Erlang rather than porting most of the code; its a bit of a hurdle to learn and find developers but it honestly produces extremely solid fault-tolerant applications in cases where the other languages just don't quite cut it without a ton of babysitting and overhead.

  • @fumoffuyou
    @fumoffuyou 12 років тому

    In computing, variables are bound to values. Binding of values is an issue of "scope" and "extent". Traditionally, "constants" are not local, they're global otherwise they're not constants if they have different values in different places. Erlang variables are bound once within scope of the function, but their extent ends when that call exits/returns. During the next call, the variable can have a different value. Since the value varies over time, it *is* still a variable (not a constant).

  • @stoneydavis
    @stoneydavis 9 років тому +5

    ignore jqtube, This is designed to be a introduction to the language. Not as a instruction on how to code in Erlang

  • @sreejithr1510
    @sreejithr1510 11 років тому

    Very good session. Served his purpose. Here am I sitting with my first Erlang book.

  • @SlimShinoda19
    @SlimShinoda19 13 років тому

    Awesome lecture.
    Have to present this in class but just have 10 minutes...and sooo much to talk about.

  • @fadliawan
    @fadliawan 12 років тому

    Well not really I guess. If you do algebra, you declare x = 100 then later on declare x = 10, whereas x = x but it means 100 = 10. It's a bit wrong.

  • @Marxama
    @Marxama 12 років тому

    Thank you, great introduction!

  • @mahendrakathirvel
    @mahendrakathirvel 8 років тому

    Pretty good intro to Erlang!.

  • @marufhasan1000
    @marufhasan1000 8 років тому

    very nice talk!

  • @DavidMartinoccam
    @DavidMartinoccam 11 років тому

    great teaching!

  • @NilanMihindukulasooriya
    @NilanMihindukulasooriya 11 років тому

    great... thanks :)