もやもやエンジニア

IT系のネタで思ったことや技術系のネタを備忘録的に綴っていきます。フロント率高め。

2015-08-31から1日間の記事一覧

Elixir 入門 その12 - alias, require and import

リソースの再利用を容易にするための仕組みとして alias, require ,importがある arias モジュールにaliasをつけることができる defmodule Math do # Math.Listはモジュール内であればListで呼ぶことができるようになる。 # 本来のListは ` Elixir.List ` で…

Elixir 入門 その11 - IO and the file system

The IO module # 標準出力 iex> IO.puts "hello world" hello world :ok # 標準入力 iex> IO.gets "yes or no? " yes or no? yes "yes\n" # :stderrをarg1に与えると出力先が標準エラーになる iex> IO.puts :stderr, "hello world" hello world :ok The File…