タグ

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

タグの絞り込みを解除

elixirlangに関するprogrhymeのブックマーク (1)

  • elixir-lang.github.com

    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

    progrhyme
    progrhyme 2015/04/21
    すごいキラキラした名前のプログラム言語だ。Erlang VMで動く動的関数型言語らしい。 / Elixir :
  • 1