LoginSignup
5
2

More than 5 years have passed since last update.

[Elixir]StringをAtomに簡単に変換する方法

Last updated at Posted at 2018-06-22

はじめに

最近、Elixirを書き始めたのですが、先輩にStringをAtomに簡単に変換する方法を教えてもらいました。

今までは

iex(1)> String.to_atom("hoge")
:hoge

これからは

iex(1)> :"hoge"
:hoge

以上です。

5
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
2