exs v0.1.0 Exs

exs is a command line tool. Used to run an exs/ex file. you don’t need create a project. exs can install/load dependency. feature:

  • Support global dependency management. example: $ exs install httpoison # it will install latest version $ cat http.ex defmodule THTTP do use Exs, deps: [:httpoison] def main(argv) do HTTPoison.get(“http://www.baidu.com”) |> IO.inspect end end $ exs eval http.ex

Link to this section Summary

Link to this section Functions