タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

elixirに関するsimarのブックマーク (3)

  • The Elixir programming language

    All Elixir code runs inside lightweight threads of execution (called processes) that are isolated and exchange information via messages: current_process = self() # Spawn an Elixir process (not an operating system one!) spawn_link(fn -> send(current_process, {:msg, "hello world"}) end) # Block until the message is received receive do {:msg, contents} -> IO.puts(contents) end Due to their lightweigh

    The Elixir programming language
    simar
    simar 2018/11/20
  • Phoenix

    Peace of mind from prototype to production Build rich, interactive web applications quickly, with less code and fewer moving parts. Join our growing community of developers using Phoenix to craft APIs, HTML5 apps and more, for fun or at scale. defmodule TimelineLive do use Phoenix.LiveView def render(assigns) do render("timeline.html", assigns) end def mount(_, socket) do Twitter.subscribe("elixir

  • Elixir School 日本語訳


    Elixir School Elixir SchoolElixir  Elixir School: , Deutsch, Ελληνικά, Español, Bahasa Indonesia, Italiano, , , Bahasa Melayu, Norsk, Polski, Português, Русский, Slovenčina, Türkçe, , Українською, Vit ng,   . elixirschool/elixirschoolElix
    Elixir School 日本語訳
    simar
    simar 2018/11/20
  • 1