Created
May 4, 2014 10:46
-
-
Save alco/b45a2f393ffdec6729fd to your computer and use it in GitHub Desktop.
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
| -module(erl). | |
| -export([start/0]). | |
| -define(Dict, 'Elixir.Dict'). | |
| -define(HashDict, 'Elixir.HashDict'). | |
| start() -> | |
| D = ?HashDict:new(), | |
| D2 = ?Dict:put(D, hello, world), | |
| io:format("~p~n", [D2]). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment