Implement missing `erlang:display_string`. ``` true = erlang:display_string("hello"). hello ``` ``` true = erlang:display_string(<<"hello">>). hello ```
Implement missing
erlang:display_string.