【发布时间】:2018-04-04 06:59:34
【问题描述】:
我有一张地图map = %{hello: :world}
我可以在控制台中看到长生不老药的内部表示
iex> IO.inspect map
%{hello: :world}
有没有办法将这个内部表示与另一个字符串连接起来?比如:
iex> IO.puts("my map is: #{to_internal_representation(map)}")
my map is %{hello: :world}
【问题讨论】: