1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| %%%-------------------------------------------------------------------
| %%% @author bin.shen
| %%% @copyright (C) 2016, <COMPANY>
| %%% @doc
| %%%
| %%% @end
| %%% Created : 29. Nov 2016 9:46 AM
| %%%-------------------------------------------------------------------
| -module(test).
| -author("bin.shen").
|
| %% API
| -export([init/0]).
|
| init() ->
| A = <<1,2>>,
| B = <<3,4,5>>,
| C = <<A/binary, B/binary>>,
| io:format("~p~n", [C]).
|
|