Created
February 28, 2020 19:07
-
-
Save KronicDeth/a6b1ca9a9805603800597f7d0dbd9038 to your computer and use it in GitHub Desktop.
This file contains 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(init). | |
-export([start/0]). | |
-import(erlang, [print/1]). | |
-spec start() -> ok | error. | |
start() -> | |
Binary = <<"Hello, Lonestar Elixir 2020!">>, | |
print(Binary). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment