タグ

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

  • 関連タグはありません

タグの絞り込みを解除

elixirlangとelixirに関するkey_ambのブックマーク (1)

  • 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
    key_amb
    key_amb 2015/04/21
    すごいキラキラした名前のプログラム言語だ。Erlang VMで動く動的関数型言語らしい。 / Elixir :
  • 1