タグ

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

タグの絞り込みを解除

elixirに関するmanatenのブックマーク (6)

  • ElixirCheat12

    cheat sheet elixir-lang.org v1.2 Updated 1/4/2016 Operators === !== and or not (strict) == != && || ! (relaxed) >, >=, <, <= +, -, *, / (float) div, rem (integer) binary1 <> binary2! (concat) list1 ++ list2 ! ! (concat) list1 -- list2 (set diff) a in enum ! (membership) ^term (no reassign) Command line elixir [options] file.ex/file.exs iex iex -S script (e.g., iex -S mix) iex --name local iex --snam

  • Introduction

    Welcome! In this tutorial, we are going to teach you about Elixir fundamentals - the language syntax, how to define modules, how to manipulate the characteristics of common data structures, and more. This chapter will focus on ensuring that Elixir is installed and that you can successfully run Elixir’s Interactive Shell, called IEx. Our requirements are (see elixir -v): Elixir 1.11.0 onwards Erlan

  • Redirecting…

    Redirecting…

  • elixirはプログラマの万能薬になるか - Fat Old Sun

    erlang/OTP界隈でreiaというrubyフレーバーの言語が開発されて以来、erlang/OTP上で動作する言語がいくつか開発されている(efene, LFE(Lisp Flavoured Erlang)など)。どれも、erlang/OTPの独特な機能である、並行性、動的アップグレード、対障害性などをもっと、「普通の」言語から利用したいという要求だろう。 elixirはそんな中、reiaのすぐ後に独立して開発され、reiaの後継プロジェクトに指定された歴史を持つ。 当初はreiaと同様にrubyフレーバーの言語とオブジェクトシステムを持っていたが、2011年末の0.4-devから大胆に仕様変更を行い、全く別のものとなった。 特徴 近代的なシンタックス ruby風味なので、Prologチックなerlangに比べて取っ付きやすくなっている。 強力なメタプログラミング機能 homoicon

    elixirはプログラマの万能薬になるか - Fat Old Sun
  • Dynamo on Elixer - works on Heroku! - Qiita

    Excuse Elixirという勢いのある言語の情報ということで、この記事は大変古く、基的に歴史的経緯の確認以上の役には立たないと思います。 そもそもElixirってなに http://elixir-lang.org/ Elixir is a functional meta-programming aware language built on top of the Erlang VM. 1st class なマクロ protocols による多態のサポート Pattern matching 最終的に Erlang の VM を生成する / Erlang、OTPとの連携性 日語の情報 http://d.hatena.ne.jp/k-1/20120310/p1 Heroku toolbelt 入れる https://toolbelt.heroku.com/ から入れる Setup Erl

    Dynamo on Elixer - works on Heroku! - Qiita
  • Elixir勉強会いってきました ~~ ErlangとRubyの中間、Elixir - mizchi log

    ShinjukuEx第一回いってきました。新宿のブルックリンパーラーにて飲酒しながら、6人ぐらいでコード書いていました。会社でコード書いてたら連れだされて参加した感じです。 Elixirとは ErlangのBeamというエンジン上で動く、Rubyみたいなシンタックスを持つ関数型言語です。Erlangの高可用性をもっとカジュアルに使いたい、といった需要でできたそうです。とはいっても関数型の強力なパターンマッチとRubyっぽいシンタックスのいいとこ取りで、ある意味でScalaみたいな設計思想です。 僕がうだうだ言うより他の人の記事読む方が早いです。 Rubyist が今すぐ Elixir を使ってみるべき理由 - m.igrs.jp elixirはプログラマの万能薬になるか - Fat Old Sun Rubyistが〜のいがらしさんが勉強会の主催でした。ありがとうございました。 論よりコード

    Elixir勉強会いってきました ~~ ErlangとRubyの中間、Elixir - mizchi log
  • 1