Last active
September 8, 2018 09:49
-
-
Save tngan/c745d78d7202f3598d90ef2a5edd5a3a to your computer and use it in GitHub Desktop.
my-elixir-playground
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# output is "test" | |
:string.trim "test " |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defmodule Hi do | |
def my_name_is(), do: "tngan" | |
end | |
Hi.my_name_is() # "tngan" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment